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: Problem compiling FSM

Solved!
Go to solution

: Hi all again,

 

I'm still working on optimizing my encrypytion code for maximum throughput, and decided to more closely structure my labview VI like a FSM from vhdl. The code consists of a SCTL with a case structure inside to represent the states. Because the design relies heavily on BRAM, there are some cycles dedicated entirely towards reading the data out of the BRAM because as it says in the help, the output is only valid during the next clock cycle. It works when implemented on the dev computer, but fails to compile with the statement:

 

"The selected object has an embedded shift register that makes the output on a particular loop iteration correspond to the inputs from the previous iteration."

 

Logically, the way it is structured makes sense to me and obviously works on the PC, so I am unsure what labview is asking. Does anyone have any experience with the error and how to fix it?

 

Thanks!

0 Kudos
Message 1 of 3
(2,321 Views)
Solution
Accepted by HelpMeJebus

You're almost there ; )

 

The error is being generated because you have the memory reads inside the case structure and the LabVIEW compiler isn't smart enough (yet) to make that scenario work. In general, it would require adding additional muxing logic on the output of the left end of the shift register which could cause timing issues. In your case, moving the reads outside the case structure and having them wire directly to the shift registers should work. It doesn't hurt to read from the memories every cycle.

 

snip.png

0 Kudos
Message 2 of 3
(2,318 Views)

Thanks Dragis!

 

After some tampering, I finally moved all the memory blocks outside and it's working like a charm. By the way, the picture was very helpful as well. Thanks for taking the time to help!

0 Kudos
Message 3 of 3
(2,288 Views)