From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

FPGA sample timing and format conversion

Solved!
Go to solution

I have a C-RIO with a bunch of cards in it including an NI-9231.  I set the sampling rate of the 9231 to 51.2 kS/s, all channels AC coupled, calibration mode "raw."  There are two things I don't understand.

 

First, about timing: if I set the sampling rate on the NI-9231 configuration, how do I make sure the block below does not run until there are new samples ready?  Does that happen automatically, by the I/O nodes not releasing a new sample until one is actually ready?

 

Second: I really want the 24-bit samples as raw.  I'm not sure if 'raw' means signed or unsigned.  Ultimately I have to get these into a DMA FIFO to get them over to the real-time side of the C-RIO.  Do I need to do that conversion to I32?  Should it be a U32?  What should I expect out of that conversion - will be -2^23-1 to 2^23 sign-extended to 32-bits?

 

 

 

 

 

wz2b_0-1605378487128.png

 

0 Kudos
Message 1 of 4
(1,242 Views)
Solution
Accepted by wz2b

For timing, you can put a dealy into your code that will allow you to control the speed the loop runs at. See the code below for an example. 

 

a.png

 

The NI-9231 is a 24 bit, +/- 5v. To get data out in this format you need to set up your FIFO to take this data. See below, Your word length it 24, your integer word length is 4, that gives you -8 to +8, a range that will fit all your data. Also, it is signed as its + and -. 

 

Austin-Downey_0-1605386189271.png

 

I hope that helps, Kudos are helpful too! 

 

 

 

 

Message 2 of 4
(1,213 Views)

It's weird, then, that I have no rate limiting at all, but I'm getting data out pretty close to 51,200 writes per second, like it regulates the timing of the loop just because of the setting of the option card.  When you do the I/O read are you reading a buffered value?  Or is it waiting until a sample is available?  To maintain constant time there must be some buffer in the card but I can't find any documentation that tells me how much.

 

0 Kudos
Message 3 of 4
(1,201 Views)

My (incomplete) understanding is that the clock that drives the data acquisition is in the NI-9231 module itself. Moreover, I don't believe the module has a buffer, I have also looked for this in the documentation but have not found one. My working theory is that as LabVIEW uses G programming which is a data flow programming, it won't let the "build array" block in your code operate till data is available from the device. The functionality of data-flow programming is what limits the tops speed. 

 

Also, I have never had an issue with my modules returning "old" data, yet another reason I don't believe there is a buffer between the FPGA and the module. 

 

 

Message 4 of 4
(1,193 Views)