- Mon May 02, 2016 5:43 am
#46672
Thanks Erik for sharing this bridge to the community. I'm working on it since a couple of days to try to detach some cables from an high-speed acquisition device (would like to use the UART bridge at full speed, i.e. 1Mbit). So far I'm stucked in some strange behaviours on a Adafruit HUZZAH (ESP-12), I mounted the same ESP-12 on my acquisition device.
The first one (not really a big problem) is the timeout on the telnet control port (24), I have to reconnect each 30 seconds if no inputs given. On the countrary, the bridge port (23) can't be released, I have to kill the telnet process.
The second is problem I'm facing on is on the UART bridge, using with default configuration (i.e. 115200, 8N1). I open a terminal (minicom) to the UART and another terminal running telnet IP 23. After some garbage on the minicom terminal I can write some chars on the telnet session and see them in minicom after hitting ENTER. Well, on the other way, typing a char in minicom this will instantly appear in the telnet session but, typing a second char in minicom I see in telnet new char prepended by the previous char(s):
Code: Select alltelent -> minicom
abc[ENTER] -> abc_
minicom -> telnet
a -> a_
b -> ab_
c -> abc_
^J -> abc
_
d -> abc
d_
an so on...
Is there anything that I may misunderstood? I'm running the firmware compiled from my-self from github. Does anyone have the same problem? Thanks.