File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ void sdCardHelp(void)
171
171
DSERIALprintln (F (" Available Commands:" )); DSERIAL->flush ();
172
172
DSERIALprintln (F (" HELP - Print this list of commands" )); DSERIAL->flush ();
173
173
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 ();
175
175
DSERIALprintln (F (" SZ file - Send file from OLA to terminal using ZModem (\" SZ *\" will send all files)" )); DSERIAL->flush ();
176
176
DSERIALprintln (F (" SS file - Send file from OLA using serial TX pin" )); DSERIAL->flush ();
177
177
DSERIALprintln (F (" CAT file - Type file to this terminal - alternate TYPE" )); DSERIAL->flush ();
@@ -304,7 +304,7 @@ void sdCardMenu(int numberOfSeconds)
304
304
{
305
305
306
306
count_files (&Filesleft, &Totalleft);
307
- DSERIALprint (F (" \r\n Deleting " )); DSERIAL->print (Filesleft); DSERIALprint (F (" files (" )); DSERIAL->print (Totalleft); DSERIALprintln (F (" bytes)" ));
307
+ DSERIALprint (F (" \r\n Deleting at most " )); DSERIAL->print (Filesleft); DSERIALprint (F (" files (" )); DSERIAL->print (Totalleft); DSERIALprintln (F (" bytes)" ));
308
308
309
309
root.open (" /" ); // (re)open the root directory
310
310
root.rewind (); // rewind
You can’t perform that action at this time.
0 commit comments