02-07-2013 02:23 AM - edited 02-07-2013 02:24 AM
Hello,
I want to capture 2 signal using TDS 1002B using USB in labview. I want to capture continuously my signal in Time based 0.0005 second.
But when I initial oscilloscope in labbview it is not work (please see attached file 1).
When I use a Auto Setup configuration in my Loop it is work but It has 2 problem (please see attached file 2).
1- I lost Time based 0.0005 second.
2- In any iteration in For loop Auto setup must be config so this process takes many time.
Would you please help me.
02-07-2013 09:14 AM
What exactly do you mean 'does not work'? All that you have done is place a for loop around the read in one of the examples that comes with the driver. Do you get an error?
02-07-2013 09:58 AM
It mean that when I want to read a Sin signal using oscope file 1 shown a signal similar noise but file 2 shown Sin signal.
02-07-2013 10:14 AM
I would suggest you try the Acquire Continuous Waveform example. After configuring the second channel, add another fetch waveform to get channel 2.
02-07-2013 11:34 AM
Thank you.
I see example for continuous Aquire but it has for 1 channel only.Would you please tell me how add 2 channel to this example.
Do perfom 2 channel simoultanosly sampling with this method?
Best regards
02-07-2013 11:59 AM
Yes, you just have to add the configuration for the second channel. You have that configuration in the example you have. Then, as I said, inside the loop you have to add another fetch to get the waveform for the second channel. Look inside the Read Muliple Waveforms VI. I has a single fetch inside a for loop with a channels array. You can also do it that way instead of adding a second fetch.
02-07-2013 12:21 PM - edited 02-07-2013 12:23 PM
Thank you again
Would you please how you added 2 channel using array to Fecth?(please see attached file)
regards
02-07-2013 12:32 PM - edited 02-07-2013 12:34 PM
Place another for loop around the fetch with auto-indexing enabled so that the fetch will be run twice with each iteration of the outer for loop.