You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use punyforth for getting some data from serial port but after browsing around there are some problem I found:
The way I understand it, effectively only 1 uart on esp8266 (the second uart is transmit only)
punyforth use that serial forth as repl
Is there anyway to move the repl on tcp/ip port? effectively making punyforth a telnet forth
or move the repl to i2c (which added benefit I can use several board on an i2c wire)
Another small but useful trick is adding softuart feature to punyforth but some of my device use some weird unusual baudrate 5787 8E1 so I worry if the softuart can't handle that use case
TIA
The text was updated successfully, but these errors were encountered:
Is there a way to make punyforth not using the first uart at all?
I don't think so. AFAIK RTOS / ESP-IDF already uses the UART for printf(). If you restart your esp you'll see some messages which are not coming from punyforth and they're written out via UART.
There might be some configs to disable or customize it:
I want to use punyforth for getting some data from serial port but after browsing around there are some problem I found:
TIA
The text was updated successfully, but these errors were encountered: