fix(sim_waveform): add acquisition_group to waveform_0d component

This commit is contained in:
2026-07-07 14:38:15 +02:00
committed by wakonig_k
parent c377c95ea4
commit 42ea005769
+8 -1
View File
@@ -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)