Hello everyone,
I have a NI USB 6363 Mass Termination.
When I testing counter output with the code:
>>> import nidaqmx
>>> from nidaqmx.types import CtrTime
>>> with nidaqmx.Task() as task:
... task.co_channels.add_co_pulse_chan_time("Dev1/ctr0")
... sample = CtrTime(high_time=0.001, low_time=0.001)
... task.write(sample)
I get an error:
(-200474): Specified operation did not complete, because the specified timeout expired
Does someone have ideas about this?
Thank you very much!