LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

NI 9242 wrong sample rate

Solved!
Go to solution

Dear community, I have a small problem with NI 9242 module. I am using it in my test bed to read the frequency of the grid voltage. In my design I have used an example provided by NI regarding the NI 9242 module. I am using the block "Build waveform" to build the signal with the help of the data acquired from FIFO. For "Build waveform" I use a "dt" value of (1/50000), because my module is working on frame rate of 50 kS/s. However, if I use the "dt" of 1/50000 I get the wrong value of frequency of the grid (which is 50 Hz for sure). To receive the correct value I use "dt" of 31250. Why is this happening? Any clues?

0 Kudos
Message 1 of 7
(3,454 Views)

Hi Sergii,

 

the datasheet for NI9242 specifies sample rates of 50kS/s, 25kS/s and smaller…

 

When your software generates data with 31.25kS/s then the problem is in your software.

Either you debug on your own - or you need to attach your VI(s)…

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 2 of 7
(3,438 Views)

The thing is, there is no possibility to choose the frame rate of the module to be 31.25 kS/s. I have attached the VIs both for rFPGA and Host side. Thanks in advance. 

Download All
0 Kudos
Message 3 of 7
(3,421 Views)
Solution
Accepted by topic author Sergii_Lev

Hi Sergii,

 

what's the loop rate of the outer while loop in your FPGA VI?

Why don't you put each module in its own loop? Some modules are slower than others and might slow down the whole loop!

What kind of wait did you program in this loop? How long is this "100" with a coercion dot?

 

And both VIs are WAY TOO BIG! Using 12 FullHD screens for a block diagram is ridiculous!

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 4 of 7
(3,415 Views)

Hi GerdW,

 

The loop rate is 0 us, that 100 us was in the old version of the code. Does that mean that all C modules run at their maximum speed, right? Should I use any time counter, or just delete it?

 

I will put each module in its own loop, that is a very valuable comment, thank you.

 

Regarding huge diagram - yeah, I am using a big screen, but first thing is that it was my first project in LabVIEW, and I didn't want to make a lot of subVIs, in order to adjust the code later. 

 

 

0 Kudos
Message 5 of 7
(3,402 Views)

Hi Sergii,

 

Does that mean that all C modules run at their maximum speed, right?

No. Some modules can be configured in their right-click properties…

 

Should I use any time counter, or just delete it?

To have an accurate loop timing you should use a wait function…

 

Regarding huge diagram - yeah, I am using a big screen

But not as big as your BD are! Even on a 4K screen you need to scroll!

 

I didn't want to make a lot of subVIs, in order to adjust the code later.

Well, as you run into problems you can "adjust" your code now! 😄

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
0 Kudos
Message 6 of 7
(3,397 Views)

Works perfect now, thank you very much! What I also noticed is that compilation process of FPGA code was much faster, almost 3 times faster!

0 Kudos
Message 7 of 7
(3,384 Views)