From cdc4ae02b5c524f7116fec084e7d89214813c998 Mon Sep 17 00:00:00 2001 From: x01dc Date: Mon, 20 Jul 2026 14:18:26 +0200 Subject: [PATCH] fix/delays after newpar. lamni needs more time --- csaxs_bec/devices/omny/galil/galil_ophyd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csaxs_bec/devices/omny/galil/galil_ophyd.py b/csaxs_bec/devices/omny/galil/galil_ophyd.py index 254fb5d..4c5df96 100644 --- a/csaxs_bec/devices/omny/galil/galil_ophyd.py +++ b/csaxs_bec/devices/omny/galil/galil_ophyd.py @@ -201,7 +201,7 @@ class GalilController(Controller): self.socket_put_confirmed(f"naxis={axis_Id_numeric}") self.socket_put_confirmed(f"ndir={direction_flag}") self.socket_put_confirmed("XQ#NEWPAR") - time.sleep(0.3) + time.sleep(0.2) self.socket_put_confirmed("XQ#FES") time.sleep(0.1) axis_Id = self.axis_Id_numeric_to_alpha(axis_Id_numeric) @@ -236,7 +236,7 @@ class GalilController(Controller): time.sleep(0.1) self.socket_put_confirmed(f"naxis={axis_Id_numeric}") self.socket_put_and_receive("XQ#NEWPAR") - time.sleep(0.1) + time.sleep(0.3) self.socket_put_confirmed("XQ#FRM") time.sleep(0.1) axis_Id = self.axis_Id_numeric_to_alpha(axis_Id_numeric)