how to set the sample interval in labview?

Having problems ? let us know the details here
Post Reply
Patrick Hong

how to set the sample interval in labview?

Post by Patrick Hong »

I am using ADC 11 in labview through the function adc11_labview_single, I access it through the example of adc11.llb -> adc11_single.vi, I would like to know if there is any way to set the sample interval... because I need to get high frequency data, thank you

James

Setting sample interval in LabVIEW

Post by James »

Hello,
To set the sample interval, set up a procedure call in your program to the routine adc11_set_interval, which is stored in the ADC11.dll.

The arguments for this are
unsigned long adc11_set_interval( unsigned long us_for_block,
unsigned long ideal_no_of_samples,
short * channels,
short no_of_channels);

A full description of this and other modules can be found in the ADC11 manual.

Post Reply