Skip to content

Commit facd024

Browse files
committed
Update sdCardHelp
1 parent faae138 commit facd024

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/OpenLog_Artemis/zmodem.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ void sdCardHelp(void)
171171
DSERIALprintln(F("Available Commands:")); DSERIAL->flush();
172172
DSERIALprintln(F("HELP - Print this list of commands")); DSERIAL->flush();
173173
DSERIALprintln(F("DIR - List files in current working directory - alternate LS")); DSERIAL->flush();
174-
DSERIALprintln(F("DEL file - Delete file - alternate RM")); DSERIAL->flush();
174+
DSERIALprintln(F("DEL file - Delete file - alternate RM (\"DEL *\" will delete all files)")); DSERIAL->flush();
175175
DSERIALprintln(F("SZ file - Send file from OLA to terminal using ZModem (\"SZ *\" will send all files)")); DSERIAL->flush();
176176
DSERIALprintln(F("SS file - Send file from OLA using serial TX pin")); DSERIAL->flush();
177177
DSERIALprintln(F("CAT file - Type file to this terminal - alternate TYPE")); DSERIAL->flush();
@@ -304,7 +304,7 @@ void sdCardMenu(int numberOfSeconds)
304304
{
305305

306306
count_files(&Filesleft, &Totalleft);
307-
DSERIALprint(F("\r\nDeleting ")); DSERIAL->print(Filesleft); DSERIALprint(F(" files (")); DSERIAL->print(Totalleft); DSERIALprintln(F(" bytes)"));
307+
DSERIALprint(F("\r\nDeleting at most ")); DSERIAL->print(Filesleft); DSERIALprint(F(" files (")); DSERIAL->print(Totalleft); DSERIALprintln(F(" bytes)"));
308308

309309
root.open("/"); // (re)open the root directory
310310
root.rewind(); // rewind

0 commit comments

Comments
 (0)