You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
the write functions in nidaqmx/_task_modules/write_functions.py require writable numpy arrays altough those functions only read the data to be written to the device. I believe this is a bug and wrapped_ndpointer(..., flags=('C', 'W')) should be changed into wrapped_ndpointer(..., flags=('C',)) in write_functions.py.
Greetings from Austria
The text was updated successfully, but these errors were encountered:
Hi,
the write functions in
nidaqmx/_task_modules/write_functions.py
require writable numpy arrays altough those functions only read the data to be written to the device. I believe this is a bug andwrapped_ndpointer(..., flags=('C', 'W'))
should be changed intowrapped_ndpointer(..., flags=('C',))
inwrite_functions.py
.Greetings from Austria
The text was updated successfully, but these errors were encountered: