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
Sketch of a code to implement a UART terminal using the RP2040 hardware UART peripheral. The terminal is connected to the user project pins ui_in[3] (12) and uo_out[4], and is running at 115200 baud rate.
Currently, the terminal does not forward the Ctrl+C character to the UART port. Instead, it stops running. You can change this behavior by calling micropython.kbd_intr(0).
Also, it'd be more efficient to poll() for both stdin and uart1, if possible.
The text was updated successfully, but these errors were encountered:
Sketch of a code to implement a UART terminal using the RP2040 hardware UART peripheral. The terminal is connected to the user project pins
ui_in[3]
(12) anduo_out[4]
, and is running at 115200 baud rate.Currently, the terminal does not forward the Ctrl+C character to the UART port. Instead, it stops running. You can change this behavior by calling
micropython.kbd_intr(0)
.Also, it'd be more efficient to
poll()
for both stdin and uart1, if possible.The text was updated successfully, but these errors were encountered: