RPi Pico - what UART is used by USB #11080
-
Hi, I tried hard, but couldn't find, unfortunately: -- please what UART is used by the USB port of RPi Pico? There are UART0+1 available on pins of Pico, but the USB connector provides another serial communication with the PC (in uPython, it is acessed as stdin, stdout, indeed). Thank You so much, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
USB and UART are independent. So you can use both UART0 and UART1 for other tasks. |
Beta Was this translation helpful? Give feedback.
USB and UART are independent. So you can use both UART0 and UART1 for other tasks.
If you like to, you can have stdin/stdout at UART in addition to USB in the standard build, using dupterm. Or you can create a special build with stdin/out at UART, and even disable USB.