From 6a350b473819c32ae028fa2048167da5580d84d4 Mon Sep 17 00:00:00 2001 From: Xiaoqiang Wang Date: Wed, 9 Jul 2025 15:57:42 +0200 Subject: [PATCH] do not override motor_done_move The _move_chnaged method is decorated by @motor_done_move.sub_value. Overriding this signal breaks the callback. --- ophyd_devices/devices/psi_motor.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ophyd_devices/devices/psi_motor.py b/ophyd_devices/devices/psi_motor.py index 51184ca..47d4678 100644 --- a/ophyd_devices/devices/psi_motor.py +++ b/ophyd_devices/devices/psi_motor.py @@ -30,9 +30,6 @@ class EpicsMotor(OphydEpicsMotor): """ tolerated_alarm = AlarmSeverity.INVALID - motor_done_move = Cpt( - EpicsSignalRO, ".DMOV", auto_monitor=True, kind=Kind.normal, docs="Done moving to value" - ) motor_deadband = Cpt( EpicsSignal, ".RDBD", auto_monitor=True, kind=Kind.config, docs="Retry Deadband (EGU)"