From 0c7ed024d9616c8904dc1b6783bdbaf1fa9ccb29 Mon Sep 17 00:00:00 2001 From: Nicholas Grey Date: Mon, 3 Feb 2020 16:10:13 +0200 Subject: [PATCH] Added missing step_bits_dual declaration in stepper_t struct (STEP_PULSE_DELAY option) --- grbl/stepper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/grbl/stepper.c b/grbl/stepper.c index 8e0b151d..8f1eac19 100644 --- a/grbl/stepper.c +++ b/grbl/stepper.c @@ -103,6 +103,7 @@ typedef struct { counter_z; #ifdef STEP_PULSE_DELAY uint8_t step_bits; // Stores out_bits output to complete the step pulse delay + uint8_t step_bits_dual; #endif uint8_t execute_step; // Flags step execution for each interrupt.