|
@ -29,7 +29,7 @@ |
|
|
* E1 Have the host 'echo:' the text |
|
|
* E1 Have the host 'echo:' the text |
|
|
*/ |
|
|
*/ |
|
|
void GcodeSuite::M118() { |
|
|
void GcodeSuite::M118() { |
|
|
if (parser.boolval('E')) SERIAL_ECHO_START(); |
|
|
if (parser.seenval('E') && parser.value_bool()) SERIAL_ECHO_START(); |
|
|
if (parser.boolval('A')) SERIAL_ECHOPGM("// "); |
|
|
if (parser.seenval('A') && parser.value_bool()) SERIAL_ECHOPGM("// "); |
|
|
SERIAL_ECHOLN(parser.string_arg); |
|
|
SERIAL_ECHOLN(parser.string_arg); |
|
|
} |
|
|
} |
|
|