Bug #16
Extra line is seen after every enter
Description
pressing enter appears to be interpreted by the serial device as two enters.
Related issues
Associated revisions
History
Updated by Hamish almost 15 years ago
- % Done changed from 0 to 20
This is due to the telnet end of line processing - Telnet specifies that end of line will either be CR LF or CR NUL, thus what we are seeing here appears to be the NUL character being interpreted by the serial device.
Updated by Hamish almost 15 years ago
Implementing this will require a cooked data processing mode - thus allowing telnet option processing in serial-data-pump mode and therefore send break support
Updated by Hamish almost 15 years ago
- Status changed from New to Closed
- % Done changed from 20 to 100
Add telnet processing to serial-data-pump. Add ability to exit back to menu.
There is still a lot of cleanup work remaining from here. We do not need the
menu thread, we should run the menu from the net_to_com thread, however it
appears to meet the requirements. closes #16, #20