From 1132ec34c1e59a9db0957979074b981160e77d83 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 9 Jun 2018 21:13:55 -0500 Subject: [PATCH] Increase BLOCK_DELAY_FOR_1ST_MOVE to 100 Co-Authored-By: ejtagle --- Marlin/planner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/planner.cpp b/Marlin/planner.cpp index 8bdcb5fee..f52d6fc57 100644 --- a/Marlin/planner.cpp +++ b/Marlin/planner.cpp @@ -83,7 +83,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;