gcode_parse.c: Debug S with serwrite_int32.

This commit is contained in:
David Forrest 2014-06-13 22:43:09 -04:00 committed by Markus Hitter
parent f046c013e3
commit 003697ee0f
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ void gcode_parse_char(uint8_t c) {
else
next_target.S = decfloat_to_int(&read_digit, 1);
if (DEBUG_ECHO && (debug_flags & DEBUG_ECHO))
serwrite_uint16(next_target.S);
serwrite_int32(next_target.S);
break;
case 'P':
next_target.P = decfloat_to_int(&read_digit, 1);