12-26-2023 05:40 AM
12-26-2023 01:33 PM
Do you have a question?
12-26-2023 11:33 PM
The question is when i add the DAQmxSetDelayFromSampClkDelay line ,i can't get the data from NICard and error code is -200077 . IF don't add the funtions that is normal. how to add the dealy time after each trriger trrigered?
01-03-2024 09:31 AM
1. Not all DAQmx properties are valid across all DAQ devices.
2. It sounds like you may be conflating the "trigger" with the "sample clock". This is a somewhat common source of misunderstanding, perhaps because the terminology isn't used the same way by all mfgrs.
3. There are similar properties available for setting the delay from the trigger -- perhaps your device supports those?
4. Can you give us a detailed description of what your task needs to do? Please be careful about terms like trigger and sample clock. In DAQmx:
- a start trigger is a signal that initiates 1 full acquisition sequence. No matter how many samples you collect, you only respond to a single start trigger signal throughout the acquisition time
- the sample clock causes the device to ADC convert one sample of each channel in the task. There will be many cycles of the sample clock within each acquisition, and the number is indefinite when you do "continuous sampling".
-Kevin P