1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu/native: make sure help text does not exceed 80 columns

This commit is contained in:
Benjamin Valentin 2020-10-29 16:15:42 +01:00
parent 22ba75e8be
commit 3f58672351

View File

@ -309,13 +309,16 @@ void usage_exit(int status)
" times (up to UART_NUMOF)\n"
#ifdef MODULE_PERIPH_GPIO_LINUX
" -g <gpio>, --gpio=<gpio>\n"
" specify gpiochip device for GPIO access. This argument can be used multiple times.\n"
" specify gpiochip device for GPIO access.\n"
" This argument can be used multiple times.\n"
" Example: --gpio=/dev/gpiochip0 uses gpiochip0 for port 0\n"
#endif
#if defined(MODULE_SOCKET_ZEP) && (SOCKET_ZEP_MAX > 0)
" -z [<laddr>:<lport>,]<raddr>:<rport> --zep=[<laddr>:<lport>,]<raddr>:<rport>\n"
" provide a ZEP interface with (optional) local address and port (<laddr>, <lport>).\n"
" The ZEP interface connects to the remote address and may listen on a local address.\n"
" provide a ZEP interface with an (optional) local address and port\n"
" (<laddr>:<lport>) and a remote address and port (<raddr>:<rport>).\n"
" The ZEP interface connects to the remote address and may listen\n"
" on a local address.\n"
" Required to be provided SOCKET_ZEP_MAX times\n"
#endif
);