From 84e9a281416216bbef6cc200c77eea4ace5baf71 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 8 Oct 2025 22:02:08 -0400 Subject: [PATCH] virtual_sdcard: Reduce pause time on busy detection If there are other users of the gcode mutex then pause for 50ms (instead of 100ms). Signed-off-by: Kevin O'Connor --- klippy/extras/virtual_sdcard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/extras/virtual_sdcard.py b/klippy/extras/virtual_sdcard.py index 6dc49e2f5..b17004562 100644 --- a/klippy/extras/virtual_sdcard.py +++ b/klippy/extras/virtual_sdcard.py @@ -259,7 +259,7 @@ class VirtualSD: continue # Pause if any other request is pending in the gcode class if gcode_mutex.test(): - self.reactor.pause(self.reactor.monotonic() + 0.100) + self.reactor.pause(self.reactor.monotonic() + 0.050) continue # Dispatch command self.cmd_from_sd = True