From ae86fbd32981c30c8f01d22a5e6bcef9e2fcee1a Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Thu, 16 May 2024 16:15:07 +0200 Subject: [PATCH] fix: fixed lgalil init --- csaxs_bec/devices/galil/lgalil_ophyd.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/csaxs_bec/devices/galil/lgalil_ophyd.py b/csaxs_bec/devices/galil/lgalil_ophyd.py index 956e675..d7935c8 100644 --- a/csaxs_bec/devices/galil/lgalil_ophyd.py +++ b/csaxs_bec/devices/galil/lgalil_ophyd.py @@ -104,7 +104,9 @@ class LamniGalilMotor(Device, PositionerBase): device_manager=None, **kwargs, ): - self.controller = GalilController(socket_cls=socket_cls, socket_host=host, socket_port=port) + self.controller = LamniGalilController( + socket_cls=socket_cls, socket_host=host, socket_port=port + ) self.axis_Id = axis_Id self.controller.set_axis(axis=self, axis_nr=self.axis_Id_numeric) self.sign = sign