01-23-2018 07:45 AM
Hey guys, since last time I managed to get my hardware work with LabView (big thanks to Mark Yedinak).
So I am receiving signal data from a TCP Socket , and i get the Signal presented on a graph.
No I am trying to make a simple fuzzy controler, to classify the signal. But somehow my Data is not leaving the case structure, any idea how to make the data stream flow through to the fuzzy control? When I set a probe on the wire it says "not executed"
Solved! Go to Solution.
01-23-2018 08:01 AM
Hi lepina,
THINK DATAFLOW!
But somehow my Data is not leaving the case structure,
The data will leave the case structure - but not the while loop around that! THINK DATAFLOW!
any idea how to make the data stream flow through to the fuzzy control?
Several options:
- put everything into just one loop
- use notifiers/queues/channels to transfer data between loops
Again: THINK DATAFLOW!
01-23-2018 08:39 AM - edited 01-23-2018 08:40 AM
If you run your VI in Highlight mode (the lamp on toolbar) you'll see what's happening. Your data won't "leave the loop" until you stop the first loop, exactly like you've programmed it.
Also, the 2nd loop won't start until you stop the 1st for the same reason.
/Y
01-23-2018 08:46 AM
thanks I put all into the same loop and its working fine!