From 6820e2cc0af8f56fcc4769c5dbcf68d86eac7622 Mon Sep 17 00:00:00 2001 From: David Forrest Date: Fri, 13 Jun 2014 18:38:55 -0400 Subject: [PATCH] gcode_parse.c: fix E debugging message. This should complete issue #87. --- gcode_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcode_parse.c b/gcode_parse.c index 0668513..6a1e771 100644 --- a/gcode_parse.c +++ b/gcode_parse.c @@ -150,7 +150,7 @@ void gcode_parse_char(uint8_t c) { else next_target.target.axis[E] = decfloat_to_int(&read_digit, 1000); if (DEBUG_ECHO && (debug_flags & DEBUG_ECHO)) - serwrite_uint32(next_target.target.axis[E]); + serwrite_int32(next_target.target.axis[E]); break; 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