06-17-2008 05:51 AM
Hi
I am using DAQ PCI-6120 with labview 7.1 to modulate and demodulate signals but the problem if I increase sample rate more than 100000 kHZ we got error 200279 so I tried to read some information from ni website I haven’t found any useful information about this problem
In my application I need sample rate at least 700000 kHz
psease see attached files
I am looking forward to response me
Regards
Fouad
06-17-2008 06:12 AM - edited 06-17-2008 06:16 AM
06-19-2008 06:39 AM
sorry I mean 700 kHz
regards
fouad
06-20-2008 03:26 AM
06-23-2008 07:00 AM
Hi
i still got same problem
Regards
Fouad
06-25-2008 05:18 AM
What happens is that you have high speed acquisition with intensive signal processing at the same loop. The program can not do the signal processing as fast as the acquisition and eventually it fills and overwrites the buffer.
As Andre said, you need to put the signal processing in a different loop than the acquisition. Use one producer loop for the acquisition and two consumer loops for the processing. Try to write effiicient code and avoid using
subVI's and dynamic data. You can do filtering with low level VI's and use DBL data instead. Have a look at the LabVIEW templates and more specifically the Producer/Consumer (data) Pattern.
http://zone.ni.com/devzone/cda/tut/p/id/3023
KostasB