|
@@ -284,11 +284,11 @@ bool axis_homed[3] = { false };
|
284
|
284
|
|
285
|
285
|
static long gcode_N, gcode_LastN, Stopped_gcode_LastN = 0;
|
286
|
286
|
|
287
|
|
-static char* current_command, *current_command_args;
|
288
|
|
-static int cmd_queue_index_r = 0;
|
289
|
|
-static int cmd_queue_index_w = 0;
|
290
|
|
-static int commands_in_queue = 0;
|
291
|
287
|
static char command_queue[BUFSIZE][MAX_CMD_SIZE];
|
|
288
|
+static char* current_command, *current_command_args;
|
|
289
|
+static uint8_t cmd_queue_index_r = 0,
|
|
290
|
+ cmd_queue_index_w = 0,
|
|
291
|
+ commands_in_queue = 0;
|
292
|
292
|
|
293
|
293
|
#if ENABLED(INCH_MODE_SUPPORT)
|
294
|
294
|
float linear_unit_factor = 1.0;
|