gcode_parse.c: fix E debugging message.

This should complete issue #87.
This commit is contained in:
David Forrest 2014-06-13 18:38:55 -04:00 committed by Markus Hitter
parent 3023c74178
commit 6820e2cc0a
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ void gcode_parse_char(uint8_t c) {
else else
next_target.target.axis[E] = decfloat_to_int(&read_digit, 1000); next_target.target.axis[E] = decfloat_to_int(&read_digit, 1000);
if (DEBUG_ECHO && (debug_flags & DEBUG_ECHO)) if (DEBUG_ECHO && (debug_flags & DEBUG_ECHO))
serwrite_uint32(next_target.target.axis[E]); serwrite_int32(next_target.target.axis[E]);
break; break;
case 'F': case 'F':
// just use raw integer, we need move distance and n_steps to convert it to a useful value, so wait until we have those to convert it // just use raw integer, we need move distance and n_steps to convert it to a useful value, so wait until we have those to convert it