diff --git a/superxas_bec/devices/timepix/timepix.py b/superxas_bec/devices/timepix/timepix.py index 4a0b2f4..81d2385 100644 --- a/superxas_bec/devices/timepix/timepix.py +++ b/superxas_bec/devices/timepix/timepix.py @@ -177,6 +177,7 @@ class Timepix(PSIDeviceBase, TimePixControl): "get_pixel_map", "set_pixel_map", "set_pixel_map_from_json_file", + "set_enable_xes", ] xes_data = Cpt( @@ -401,6 +402,7 @@ class Timepix(PSIDeviceBase, TimePixControl): def enable_xes(self, value: bool): """Set whether XES data acquisition is enabled.""" self._enable_xes = value + self._enable_xes_settings(value) # Update device manager config if available if self.device_manager is not None: dev_obj = self.device_manager.devices.get(self.name, None)