09-07-2005 10:10 AM
09-07-2005 11:04 AM
The most versatile way is implementing your own protocol for transferring data.
You can have a communication loop running on each cRIO and have a communication loop in the computer. The computer can hold several TCP refnums in an array and send the appropiate data to each controller. Each controller, once receiving data, will have to analyze it and decide what to do.
09-07-2005 02:05 PM
Thanks for the info tst!
I had a feeling it would involve TCP and lower priority command-parsing loops.
- Con
09-07-2005 02:12 PM
You're welcome. Luckily, data manipulation with TCP in LV is very easy.
Is your nick an homage to Khan? It's just that that dog doesn't look very wrathful.
09-07-2005 04:47 PM
Well Wrath of Khan was a good Star Trek flick and Conrad is my name...
As far as wrathfulness of my pitbull... she was a great, friendly dog... her wagging tail was whip-like.
Thanks again for the suggestion - it looks like I will focus first on creating some type of lower priority command parser for incoming TCP messages, with the high priority loop used for data acquisition / control and a medium priority loop for outgoing TCP messages.