08-12-2008 05:39 AM
08-12-2008
10:17 AM
- last edited on
06-26-2024
08:17 AM
by
Content Cleaner
I would recommend using ethernet. Take a look at the simple TCP messaging component, or use shared variables. You can so event based communication with the TCP messaging component and it is very efficient. Shared variables are very easy and for many apps work very well. Not quite as efficient as TCP but you can't beat the simplicity.
08-14-2008 08:11 AM
Thanks so much! Steve, I will try.
Carl
08-14-2008
10:52 AM
- last edited on
06-26-2024
08:17 AM
by
Content Cleaner
Carl,
Here is another link that you might find useful. This is a very powerful method of communication with your RT. It is an example of an command base architecture based on the STM tool.
08-15-2008 09:05 AM
really appreciate your help!
08-15-2008 12:49 PM
08-18-2008 05:04 AM
Thanks, rex1030 and SteveA!
I am not sure if I use ethernet or shared variables the speed is high enough? I mean, I need to read data frequently (around 15 times / second) from cRIO. Do you think which is better, ethernet or shared variables? by the way, are there some examples for shared variables? Many thanks!
08-18-2008
10:08 AM
- last edited on
06-26-2024
08:17 AM
by
Content Cleaner
carsale wrote:
Thanks, rex1030 and SteveA!
I am not sure if I use ethernet or shared variables the speed is high enough? I mean, I need to read data frequently (around 15 times / second) from cRIO. Do you think which is better, ethernet or shared variables? by the way, are there some examples for shared variables? Many thanks!
shared variables would be plenty fast for that rate. Ethernet (using the STM component) will take less resources however.
Here is a link on shared variables
08-19-2008 03:46 AM