LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

FPGA FIFO to Serial on cRIO

I have the following code

 

LabVIEW FIFO to Serial.png

The intended functionality is fairly self explainatory but just to be as clear as possible, Bytes in the FIFO (set up as U8) are read one at a time and sent to one of the the serial ports on a NI-9871 (Mod4\Port4).  This is done every 96uS to insure there is no data collision at 115200 baud as I do not know if this is automatically handled and the timeout is used to detect an empty FIFO (the true statement in the case structure dows nothing).  A timeout of 0 on the fifo has also been tried, to make the while loop wait until there are bytes available in the FIFO.  In the RTOS, a string is turned into an array of ASCII values and sent to the FIFO.  I would expect to see that string appear at the serial port.

 

What I am actually getting at the serial port is the first character placed in the FIFO repeated indefinitely.  The vi in the RTOS has been checked and is definitely placing the correct data in the FIFO so the issue has to be with the above.  It would appear that the FIFO is failing to advance each time a byte is read and placed on the serial port.  Does anyone know how to fix this?

0 Kudos
Message 1 of 6
(1,275 Views)

Hi,

 

What I would do is replace the 9871 I/O block and use some array functions to do a quick 'sanity' check whether each iteration is reading the byte from FIFO. If it fails here, there's something wrong with the FIFO configuration.


0 Kudos
Message 2 of 6
(1,249 Views)

Hi, thanks for the reply

 

I've done something similar to that.  There's a second FIFO to read data back from the 9871 I/O.  If I connect the two FIFOs together then data goes from the RTOS to the FPGA throught the first FIFO and is returned through the second FIFO.  Everything works fine until the 9871 I/O blocks are introduced.

0 Kudos
Message 3 of 6
(1,241 Views)

Ok. Let us take a little step back.

The NI-9871 is a RS422/485 serial module. The RS422 standard says the following:
1. Header (2 bytes)
2. Body (8 bytes)
3. CRC (2 bytes)
Total (12 bytes)

Now we assume that the header and CRC are incorporated by the 9871 FPGA IP itself and we only need to send the body (8-bytes). The baudrate you have set is 115200, which, correct me if I am wrong, means 115200 bits/sec which means that the entire chunk (or frame) is getting pushed at 14,400 frames/sec. 
Now, you're timer of 96us means each byte is being written at this rate which means for 8 bytes (body only), it will take 768us. Is this rate fast or slow, according to the RS422 standard and your baud rate setting? 


0 Kudos
Message 4 of 6
(1,234 Views)

I think I am wrong. Let me formulate this once again. 


0 Kudos
Message 5 of 6
(1,229 Views)

You should monitor the Timeout output from the Write FIFO.  If that is true when you try to write, then data is being dropped/lost.

 

The 987x shipping example shows how this should be done.


Certified LabVIEW Architect, Certified Professional Instructor
ALE Consultants

Introduction to LabVIEW FPGA for RF, Radar, and Electronic Warfare Applications
0 Kudos
Message 6 of 6
(1,211 Views)