We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c619d9 commit 3dda72cCopy full SHA for 3dda72c
tests/sim_records.py
@@ -42,6 +42,8 @@ def update_sin_wf(value):
42
sin_wf.set(numpy.sin(
43
numpy.linspace(0, 2*numpy.pi*sin_ph.get(), sin_len.get())))
44
sin_wf = Waveform('SIN', datatype = float, length = 1024)
45
+# Check we can update its value before iocInit as per #22
46
+sin_wf.set([1, 2, 3])
47
sin_len = longOut(
48
'SINN', 0, 1024, initial_value=1024, on_update=update_sin_wf)
49
sin_ph = aOut('SINP', initial_value = 0.0, on_update = update_sin_wf)
0 commit comments