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

RLARM Source code

I have purchased RL-ARM but I cant find the source code for TCPNet.
Does it not come with the source code?

Thanks

Parents
  • The RL-ARM Telnet server supports both, character and line mode input. It has it's own buffer for each telnet connection, a simple command line editor and a command history buffer, which allows you to retrieve the most recently typed commands with UP/DOWN cursor keys. It also handles the Telnet Control character sequences, negotiates the Telnet options etc. You see this is much more than a simple UART-like streaming device.

    If you need a simple UART-like streaming, you can still implement it using TCPnet socket. (cca. 20 lines of additional code). In this case you don't need a Telnet server.

Reply
  • The RL-ARM Telnet server supports both, character and line mode input. It has it's own buffer for each telnet connection, a simple command line editor and a command history buffer, which allows you to retrieve the most recently typed commands with UP/DOWN cursor keys. It also handles the Telnet Control character sequences, negotiates the Telnet options etc. You see this is much more than a simple UART-like streaming device.

    If you need a simple UART-like streaming, you can still implement it using TCPnet socket. (cca. 20 lines of additional code). In this case you don't need a Telnet server.

Children