mirror of
https://github.com/bec-project/ophyd_devices.git
synced 2026-07-26 00:53:09 +02:00
fix(sim_waveform): add acquisition_group to waveform_0d component
This commit is contained in:
@@ -90,7 +90,14 @@ class SimWaveform(Device):
|
||||
compute_readback=True,
|
||||
kind=Kind.hinted,
|
||||
)
|
||||
waveform_0d = Cpt(AsyncSignal, name="waveform_0d", ndim=0, max_size=1000, kind=Kind.hinted)
|
||||
waveform_0d = Cpt(
|
||||
AsyncSignal,
|
||||
name="waveform_0d",
|
||||
ndim=0,
|
||||
max_size=1000,
|
||||
kind=Kind.hinted,
|
||||
acquisition_group="monitored",
|
||||
)
|
||||
data = Cpt(AsyncSignal, name="data", ndim=1, max_size=1000)
|
||||
# Can be extend or append
|
||||
async_update = Cpt(AsyncUpdateSignal, value="add", kind=Kind.config)
|
||||
|
||||
Reference in New Issue
Block a user