gcode_parse.c: Send newline as char rather than PSTR
This commit is contained in:
parent
da2a9c3d56
commit
f8d8b2a471
|
|
@ -352,7 +352,7 @@ void gcode_parse_char(uint8_t c) {
|
||||||
// process
|
// process
|
||||||
serial_writestr_P(PSTR("ok "));
|
serial_writestr_P(PSTR("ok "));
|
||||||
process_gcode_command();
|
process_gcode_command();
|
||||||
serial_writestr_P(PSTR("\n"));
|
serial_writechar('\n');
|
||||||
|
|
||||||
// expect next line number
|
// expect next line number
|
||||||
if (next_target.seen_N == 1)
|
if (next_target.seen_N == 1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue