Quote:
Originally Posted by Los Frijoles
As I was programming, the possibility occoured to me that this might possibly introduce the possibility for a psuedo-multithread-esque program since the NI controller uses something of an FPGA I believe (correct me if I am wrong).
|
Whether using a PC or the cRIO multithreading is possible. If you place two loops side by side on your block diagram, they will both execute in parallel in their own thread/task. In many cases, you may naturally end up using multiple threads without really focusing on the issue.
Quote:
- The equivilent of var++ was an add 1 to a value sequence which involved several numeric constants
- Sometimes the wires get tangled and are hard to distinguish...is there any way to change the color? Right now it is based on the type of the variable being passed down the wire (green = bool, blue = #)
|
There is an "Increment" block under the "Numeric" palette which would probably have solved your var++ issue more easily. As to the wires, if you right click on a wire and select "Clean Up Wire" LabVIEW will automatically move the wire to a better path.