From d82704354fc491c88c76dea6f48016b0687fd422 Mon Sep 17 00:00:00 2001 From: etagle Date: Sun, 3 Jun 2018 20:01:45 -0300 Subject: [PATCH] Increase the planner first block HOLD delay to 100mS --- Marlin/src/module/planner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/module/planner.cpp b/Marlin/src/module/planner.cpp index 18d45af50..af16e6d55 100644 --- a/Marlin/src/module/planner.cpp +++ b/Marlin/src/module/planner.cpp @@ -94,7 +94,7 @@ // Delay for delivery of first block to the stepper ISR, if the queue contains 2 or // fewer movements. The delay is measured in milliseconds, and must be less than 250ms -#define BLOCK_DELAY_FOR_1ST_MOVE 50 +#define BLOCK_DELAY_FOR_1ST_MOVE 100 Planner planner;