Browse Source

Merge pull request #949 from foosel/fix/M30_clearToSend_bug

M30 response is missing linefeed, "ok" therefore not on own line
pull/1/head
nothinman 10 years ago
parent
commit
ea9bffdc48
  1. 2
      Marlin/cardreader.cpp

2
Marlin/cardreader.cpp

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

Loading…
Cancel
Save