w
CI for csaxs_bec / test (pull_request) Successful in 1m15s
CI for csaxs_bec / test (push) Successful in 1m24s

This commit is contained in:
2026-01-22 15:44:14 +01:00
parent 9f7c6c2011
commit 1b4b6e0bb3
+1 -1
View File
@@ -163,7 +163,7 @@ class GalilRIO(PSIDeviceBase):
logger.info(f"Reading Galil RIO channels with command: {cmd}")
ret = self.controller.socket_put_and_receive(cmd)
timestamp = time.time()
values = [float(val) for val in ret.strip().split(" ")]
values = [float(val) for val in ret.strip().strip("?").split(" ")]
for val, (_, signal_name) in zip(values, channels):
res[signal_name] = {"value": val, "timestamp": timestamp}
return res