Is it possible to have an additional serial port (UART) on the RP2040? #17438
-
Hi all, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
Depends on whether you want to only send or send/receive data. You could also use the PIOs to create additional Rx/Tx UARTs. But that needs at least some coding. |
Beta Was this translation helpful? Give feedback.
-
Hi Gustave! micropython/examples/rp2/pio_uart_tx.py Line 14 in 5f058e9 Fox |
Beta Was this translation helpful? Give feedback.
-
For my first post I am delighted, I thank you all and...see you soon! |
Beta Was this translation helpful? Give feedback.
Depends on whether you want to only send or send/receive data.
If you're only sending, the documentation explains how to reconfigure a UART to use different pins.
So you could toggle back and forth between several UART pins.
You could also use the PIOs to create additional Rx/Tx UARTs. But that needs at least some coding.