If you specify both an initial_value=... and NELM=... keywords when creating a WaveformOut record, the NELM keyword is ignored and the waveform is created with a maximum length equal to the length of the data.
I think the offending line is L169 of builder.py, which seems to override the passed in NELM without checking if it is set:
fields['NELM'] = length
There is a workaround: instead of initial_value and NELM, use something like this (assuming data is a numpy array)
length=required_length,
datatype=data.dtype,
And later do myrecord.set(data)
If you specify both an
initial_value=...andNELM=...keywords when creating a WaveformOut record, theNELMkeyword is ignored and the waveform is created with a maximum length equal to the length of the data.I think the offending line is L169 of builder.py, which seems to override the passed in NELM without checking if it is set:
fields['NELM'] = lengthThere is a workaround: instead of
initial_valueandNELM, use something like this (assumingdatais a numpy array)And later do
myrecord.set(data)