07-19-2010 11:18 AM
yes sir i ve SDK with me..... pls give me idea for getting data from the ethernet cable and use them in LabVIEW .........
07-19-2010 11:50 AM
Like I said, you need to;
1 - determine the telegram protocol of your microcontroller - i.e. read the documentation - what commands to you need to send to it in order to receive the data you need?
2 - send the interrogation telegram commands over TCP - you can use TCP Open Connection, TCP Write, TCP Read, TCP Close Connection
For example, ;
Use TCP Open Connection (with the correct IP address and port number of your device) to open a connection to your microcontroller
Send a Query Telegram (depending on the telegram protocol of your device) using TCP Write
Recieve the response using TCP Read
Then close the TCP connection using TCP Close Connection
Peter