summaryrefslogtreecommitdiff
path: root/avr/command_tbl.c
diff options
context:
space:
mode:
authorLeo C2015-05-15 14:59:49 +0200
committerLeo C2015-05-15 14:59:49 +0200
commitbbd45c46a75edd930486980c0d6a94c52d8cf403 (patch)
tree6252a31b5ab322bfb9e05918fb8058f78c33d902 /avr/command_tbl.c
parent5f7f3586b0444116d5c1340465ecae8d6daa2461 (diff)
downloadz180-stamp-bbd45c46a75edd930486980c0d6a94c52d8cf403.zip
fatfs f_mount now allways done globally at start up
Diffstat (limited to 'avr/command_tbl.c')
-rw-r--r--avr/command_tbl.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/avr/command_tbl.c b/avr/command_tbl.c
index 238f132..f030b54 100644
--- a/avr/command_tbl.c
+++ b/avr/command_tbl.c
@@ -76,9 +76,10 @@ CMD_TBL_ITEM(
),
CMD_TBL_ITEM(
echo, CONFIG_SYS_MAXARGS, 1, do_echo,
- "echo args to console",
- "[args..]\n"
- " - echo args to console; \\c suppresses newline"
+ "display a line of text",
+ "[-n] [argument ...]\n"
+ " - echo the argument(s) to console.\n"
+ " -n do not output the trailing newline"
),
CMD_TBL_ITEM(
sleep , 2, 1, do_sleep,