Merge pull request #949 from foosel/fix/M30_clearToSend_bug
M30 response is missing linefeed, "ok" therefore not on own line
This commit is contained in:
commit
ea9bffdc48
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Reference in a new issue