From a3d6929cb74f6e5e72e47e8b869a15974177bc1f Mon Sep 17 00:00:00 2001 From: appel_c Date: Tue, 12 Aug 2025 17:17:19 +0200 Subject: [PATCH] w --- superxas_bec/devices/timepix/timepix.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/superxas_bec/devices/timepix/timepix.py b/superxas_bec/devices/timepix/timepix.py index a5f82cd..c693bb9 100644 --- a/superxas_bec/devices/timepix/timepix.py +++ b/superxas_bec/devices/timepix/timepix.py @@ -258,9 +258,10 @@ class Timepix(PSIDeviceBase, TimePixControl): # Fetch the backend socket info net_add = self.backend.timepix_fly_client.get_net_addresses() - print(f"TimePixFly backend is listening on: {net_add.address}") self.cam.raw_file_template.set("").wait(timeout=self._pv_timeout) - self.cam.raw_file_path.set(f"tcp://connect@127.0.0.1:8451").wait(timeout=self._pv_timeout) + self.cam.raw_file_path.set(f"tcp://connect@{net_add.address}").wait( + timeout=self._pv_timeout + ) def on_unstage(self) -> None: """Called while unstaging the device."""