requested changes

pull/345/head
netpipe 2019-04-23 00:27:58 -06:00
rodzic bfc54aeb82
commit 4f68597a61
3 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2054,7 +2054,7 @@ void Commands::processMCode(GCode *com) {
break;
case 118: // M118 message to host
if(com->hasString()) {
Com::printF(com->text);
Com::printFLN(com->text);
}
break;
case 119: // M119

Wyświetl plik

@ -124,6 +124,7 @@ Custom M Codes
- M115- Capabilities string
- M116 - Wait for all temperatures in a +/- 1 degree range
- M117 <message> - Write message in status row on lcd
- M118 <message> - Write message to host
- M119 - Report endstop status
- M120 - Report beeper status
- M121 - Report sensors status

Wyświetl plik

@ -792,7 +792,6 @@ bool GCode::parseAscii(char *line,bool fromSerial)
while (*pos)
{
if((M != 117 && M != 20 && *pos==' ') || *pos=='*') break;
pos++; // find a space as file name end
if((M != 118 && M != 20 && *pos==' ') || *pos=='*') break;
pos++; // find a space as file name end
}