Browse Source

M30 response is missing linefeed, "ok" therefore not on own line

This leads to the command not being acknowledged properly
by the firmware, leading to consecutive issues in host software
waiting for an acknowledgement.
pull/1/head
Gina Häußge 10 years ago
parent
commit
0de826160e
  1. 2
      Marlin/cardreader.cpp

2
Marlin/cardreader.cpp

@ -437,7 +437,7 @@ void CardReader::removeFile(char* name)
if (file.remove(curDir, fname)) if (file.remove(curDir, fname))
{ {
SERIAL_PROTOCOLPGM("File deleted:"); SERIAL_PROTOCOLPGM("File deleted:");
SERIAL_PROTOCOL(fname); SERIAL_PROTOCOLLN(fname);
sdpos = 0; sdpos = 0;
} }
else else

Loading…
Cancel
Save