w
Some checks failed
CI for csaxs_bec / test (push) Failing after 1m27s

This commit is contained in:
2026-02-10 14:18:45 +01:00
parent a92beac12b
commit 4ec38fa254

View File

@@ -161,7 +161,7 @@ class GalilRIODigitalOutSignal(GalilSignalBase):
cmd = f"MG@OUT[{self._channel}]"
ret = self.controller.socket_put_and_receive(cmd)
logger.debug(f"Received readback for digital output channel {self._channel}: {ret}")
self._readback = float(ret.strip().split(" "))
self._readback = float(ret.strip())
return self._readback
def _socket_set(self, value: Literal[0, 1]) -> None: