From 8379aeacf62eb50f46f8e53ee0c72171dbfde525 Mon Sep 17 00:00:00 2001 From: appel_c Date: Mon, 8 Sep 2025 09:27:02 +0200 Subject: [PATCH] w --- debye_bec/devices/pilatus/pilatus.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debye_bec/devices/pilatus/pilatus.py b/debye_bec/devices/pilatus/pilatus.py index 84236c0..0e18076 100644 --- a/debye_bec/devices/pilatus/pilatus.py +++ b/debye_bec/devices/pilatus/pilatus.py @@ -178,9 +178,9 @@ class Pilatus(PSIDeviceBase, ADBase): ) self._poll_thread_kill_event = threading.Event() self._poll_rate = 1 # Poll rate in Hz - # self._live_mode_thread = threading.Thread( - # target=self._live_mode_loop, daemon=True, name=f"{self.name}_live_mode_thread" - # ) + self._live_mode_thread = threading.Thread( + target=self._live_mode_loop, daemon=True, name=f"{self.name}_live_mode_thread" + ) # self._live_mode_kill_event = threading.Event() # self._live_mode_run_event = threading.Event() # self._live_mode_stopped_event = threading.Event()