gcode_parse.c: Send newline as char rather than PSTR

This commit is contained in:
Ben Jackson 2011-03-05 22:42:47 -08:00 committed by Michael Moon
parent da2a9c3d56
commit f8d8b2a471
1 changed files with 1 additions and 1 deletions

View File

@ -352,7 +352,7 @@ void gcode_parse_char(uint8_t c) {
// process
serial_writestr_P(PSTR("ok "));
process_gcode_command();
serial_writestr_P(PSTR("\n"));
serial_writechar('\n');
// expect next line number
if (next_target.seen_N == 1)