04-28-2005 08:31 AM
04-29-2005 12:13 PM
04-29-2005 01:15 PM
04-29-2005 04:02 PM
05-02-2005 12:11 PM
05-02-2005 12:24 PM
05-02-2005 12:26 PM
05-01-2006 10:19 AM
05-02-2006 12:54 PM
Hello Pavan,
Like you said, it is possible to do what you have stated. The way to do that would be to define a property for the DAQmx trigger. The specific property is "StartTrig_Delay". This property basically specifies an amount of time to wait after the Start Trigger is received before acquiring or generating the first sample. This value is in the units you specify with another trigger property called as "StartTrig_DelayUnit". The syntax for using these properties is as below:
int32 __CFUNC DAQmxSetStartTrigDelay(TaskHandle taskHandle, float64 data);
int32 __CFUNC DAQmxSetStartTrigDelayUnits(TaskHandle taskHandle, int32 data);
For more information regarding these function please refer to the NI-DAQmx C reference help.
Regards,
Chetan K
Application Engineer
05-02-2006 01:07 PM