11-06-2019 08:54 AM
Running a speed and torque PID loops controlling a valve. The false case for Mode S A runs the torque PID correctly. But when the true case for Mode S A runs I get zeros across all those indicators I slapped in there(cause you cant use probs in FPGA). When it was just speed PID by it's self it was working correctly, am I missing something small involving the case structure? But then I would think both cases wouldn't work correctly. Let me know your thoughts
Solved! Go to Solution.
11-06-2019 10:00 AM
I'm currently trying to remove the while loop inside the case structure. So one while loop around the case structure with just the code wide open inside the case structure. Hopefully after compiling this solves the issue.
11-06-2019 01:07 PM
Ok so yes I'm a total noob, and did fully understand data flow. For other noobs, putting a while loop inside a case structure doesn't allow for the Boolean to be read so it never actually exits the inner while loop when I just have the false constant wired to it. Therefore the solution is a while loop over the case structure and a feedback node replacing the shift registers I was using. The system successfully executes the PID for both cases. Hurray.