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)
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\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)" ));
308308
309309 root.open (" /" ); // (re)open the root directory
310310 root.rewind (); // rewind
You can’t perform that action at this time.
0 commit comments