Ver código fonte

Merge pull request #949 from foosel/fix/M30_clearToSend_bug

M30 response is missing linefeed, "ok" therefore not on own line
nothinman 11 anos atrás
pai
commit
ea9bffdc48
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Marlin/cardreader.cpp

+ 1
- 1
Marlin/cardreader.cpp Ver arquivo

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

Carregando…
Cancelar
Salvar