This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Which protocol is the best for this project ?

I'm working on LPC2468 using Keil bundle package ( MDK / RL )
I want to design a windows form ( GUI application ) in Visual C++ to perform communication ( send and receive information ) between computer and microcontroller ( LPC2468 )
I'm suggested to use SNMP v3 for this project. However I need both SNMP v3 manager and agent source code which is about $20,000.
I figured out I can communicate with my board using Telnet also. However Im not sure if it's a standard way to do that. I'm just wondering if you have any suggestion what protocol might be good for this application.

Parents
  • I'm just wondering if you have any suggestion what protocol might be good for this application.

    It's easy enough to devise your own new protocol just for this one application. People do it all the time. TCP could provide reliable transport, and your protocol could be built on top of it.

Reply
  • I'm just wondering if you have any suggestion what protocol might be good for this application.

    It's easy enough to devise your own new protocol just for this one application. People do it all the time. TCP could provide reliable transport, and your protocol could be built on top of it.

Children