From 2e5db5a7688ee8f6520e1ad7c64928be0dd34184 Mon Sep 17 00:00:00 2001 From: KGN Date: Tue, 30 Apr 2024 11:39:25 -0400 Subject: [PATCH] Slower realtime report on reset limit --- src/server/controllers/Grblhal/GrblHalController.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/controllers/Grblhal/GrblHalController.js b/src/server/controllers/Grblhal/GrblHalController.js index d6b6bae8f..b6593f20b 100644 --- a/src/server/controllers/Grblhal/GrblHalController.js +++ b/src/server/controllers/Grblhal/GrblHalController.js @@ -1776,7 +1776,7 @@ class GrblHalController { this.workflow.stop(); this.feeder.reset(); this.write('\x18'); // ^x - delay(300).then(() => { + delay(350).then(() => { this.writeln('$X'); delay(500).then(() => { this.connection.writeImmediate(GRBLHAL_REALTIME_COMMANDS.COMPLETE_REALTIME_REPORT);