summaryrefslogtreecommitdiff
path: root/avr/cmd_sd.c
diff options
context:
space:
mode:
authorLeo C2014-12-05 00:09:29 +0100
committerLeo C2014-12-05 00:09:29 +0100
commit15e476bc8dcadb88cad1e593e22cbeca62d05edb (patch)
tree9b8bab1fa5a1f4f2e5190669e02a53f79a3bfd4e /avr/cmd_sd.c
parent8b6edd92abe1f85ba5b59934d59cbac09af0f2e2 (diff)
downloadz180-stamp-15e476bc8dcadb88cad1e593e22cbeca62d05edb.zip
Card detect over cs pin: clean initialisation/power up
Diffstat (limited to 'avr/cmd_sd.c')
-rw-r--r--avr/cmd_sd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/avr/cmd_sd.c b/avr/cmd_sd.c
index f43725a..46dbcfd 100644
--- a/avr/cmd_sd.c
+++ b/avr/cmd_sd.c
@@ -330,18 +330,18 @@ CMD_TBL_ITEM(
),
CMD_TBL_ITEM(
dump, CONFIG_SYS_MAXARGS, 1, do_dump,
- "Dump sector",
- ""
+ "Dump sector(s)",
+ "<drive> [sector [count ]]"
),
CMD_TBL_ITEM(
read, 2, 1, do_read,
"Read disk sector(s) into meomory",
- "drive [sector [count [memaddr]]]"
+ "<drive> [sector [count [memaddr]]]"
),
CMD_TBL_ITEM(
write, 2, 1, do_write,
"Write sector(s) from meomory to disk",
- "drive [sector [count [memaddr]]]"
+ "<drive> [sector [count [memaddr]]]"
),
CMD_TBL_ITEM(
sync, 2, 1, do_ioctl_sync,