fix: remove stop_scan from stop

This commit is contained in:
2024-07-19 10:22:17 +02:00
parent 9cf9e640e5
commit 4db4acbcc8

View File

@@ -366,10 +366,8 @@ class Mo1Bragg(Device, PositionerBase):
"""
# Stop any motion on the device
self.move_stop.put(1)
self._stopped = True
# Stop ongoing scan, check if this is still needed after work on th controller
self.stop_scan()
# Stop the move thread
self._stopped = True
if self._move_thread is not None:
self._move_thread.join()
self._move_thread = None