09-28-2022 12:41 PM
Hello!
My problem is my FIFO on the FPGA side is a fixed point data type:
smahlen_0-1664386675937.png
Where on the host when I read the FIFO it is a completely different data type (U64):
smahlen_1-1664386736882.png
This does present a problem since I have negative data. I've tried delating and replacing and the FIFO properties have it as a fixed point data type that is signed.
How do I fix this?
Solved! Go to Solution.
09-28-2022 12:49 PM - edited 09-28-2022 12:54 PM
How is your FPGA reference opened from the host side ?
If you are referencing a Bitfile, the data types won't update on the host side after you make a change to your FPGA VI.
You either need to recompile your lvbitx or change the reference mode to either VI or Build Specification.
raphschru_0-1664387547360.png
10-05-2022 11:58 AM
That helped me a lot thank you!