From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, 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: 

Communication between FPGA and HOST

Solved!
Go to solution

Hello,

I'm trying for a week to have a nice communication with my HOST and FPGA.
But it seems that I'm loosing points when I read my fifo in HOST.


Someone has another solution or tell me what I'm doing wrong in my VI's

Thanks a lot

0 Kudos
Message 1 of 8
(3,397 Views)

Do you lose points from the start or only after a certain time?
Please try the case structure as you could see in my attached picture.

Tim Remus
National Instruments
0 Kudos
Message 2 of 8
(3,338 Views)

Thanks a lot for your answer

 

I change a little bit my program because one of the problem was the flush of the queue.

The signal, in Host, has a better behavior but he continues to loose points (image in attach).

 

I tried your proposition, but the beahvior is the same

This time, I've attach my project

Download All
0 Kudos
Message 3 of 8
(3,326 Views)

I have looked at your project more closely. I've noticed that you're making a lot of mistakes in type conversions. So you generate the queue with fxp <+-,26,5> from the invoke method comes data with fxp <+-,32,10>. And in your FPGA VI you use fxp <+-,24,5>.

Then in your second while loop you convert data from fxp into double and then you use again fxp with the insert into array function. Keep your data types consistent. Use either a double array or leave the conversion see image1 (see comments).

0 Kudos
Message 4 of 8
(3,316 Views)

Yeahh, I've a good signal now. Not perfect but much better.
So like you said I eliminate all the conversion (Red Dots).
But I continue to have one in FPGA, in the wirte into FIFO Block. This one I can't eliminate.

In this project I need to find the fundamental frequency value of a signal.
My input signal come from a frequency generator.

Have you another suggestion for a better transmission between HOST and FPGA? (updated project in attach)

0 Kudos
Message 5 of 8
(3,304 Views)

You can change the setting of the datatype by right-clicking on the FIFO in your project structure under properties.

Otherwise the FIFO is the right choice for your project. See the following link.

http://zone.ni.com/reference/en-XX/help/371599G-01/lvfpgaconcepts/fpga_dma_communication/

0 Kudos
Message 6 of 8
(3,285 Views)

Thanks for all of your answers and sorry for the late reply...

The project works better but not good as I want.

The problem continues to be the transfer between the HOST and FPGA.
The FIFO seems to lose some points in this communciation, and I don't know why does it happen.
This time, I saved in the project  a concatenating graph where we can see a jump between points when I'm reading the FIFO in HOST.

0 Kudos
Message 7 of 8
(3,228 Views)
Solution
Accepted by michael86

Ok, so I think i found the solution.

Is the relation with the size of the FIFO of the fpga and the FIFO depth in the HOST.

So, I just define a higher number for the depth (100000) in host and that work fine now.

Thank you very much  for your help

Message 8 of 8
(3,218 Views)