aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/microcom.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/miscutils/microcom.c b/miscutils/microcom.c
index 399d4cf7f..97b46342f 100644
--- a/miscutils/microcom.c
+++ b/miscutils/microcom.c
@@ -18,14 +18,14 @@
18//kbuild:lib-$(CONFIG_MICROCOM) += microcom.o 18//kbuild:lib-$(CONFIG_MICROCOM) += microcom.o
19 19
20//usage:#define microcom_trivial_usage 20//usage:#define microcom_trivial_usage
21//usage: "[-d DELAY] [-t TIMEOUT] [-s SPEED] [-X] TTY" 21//usage: "[-d DELAY_MS] [-t TIMEOUT_MS ] [-s SPEED] [-X] TTY"
22//usage:#define microcom_full_usage "\n\n" 22//usage:#define microcom_full_usage "\n\n"
23//usage: "Copy bytes for stdin to TTY and from TTY to stdout\n" 23//usage: "Copy bytes from stdin to TTY and from TTY to stdout\n"
24//usage: "\n -d Wait up to DELAY ms for TTY output before sending every" 24//usage: "\n -d DELAY Wait up to DELAY ms for TTY output before sending"
25//usage: "\n next byte to it" 25//usage: "\n every next byte to it"
26//usage: "\n -t Exit if both stdin and TTY are silent for TIMEOUT ms" 26//usage: "\n -t TIMEOUT Exit if both stdin and TTY are silent for TIMEOUT ms"
27//usage: "\n -s Set serial line to SPEED" 27//usage: "\n -s SPEED Set serial line to SPEED"
28//usage: "\n -X Disable special meaning of NUL and Ctrl-X from stdin" 28//usage: "\n -X Disable special meaning of NUL and Ctrl-X from stdin"
29 29
30#include "libbb.h" 30#include "libbb.h"
31#include "common_bufsiz.h" 31#include "common_bufsiz.h"