I read that the Pi Pico/RP2040 has 2 UARTs.
If I want to send data from a computer to a Pi Pico, how should I create a UART that uses USB? Micropython expects pin numbers to create a UART. If I use one UART to receive from the PC and one to transmit to the other Pico via wires,will repl still work? Does it also not use UART/serial? In CircuitPython, the serial/UART is directly available as UART = usb_cdc.data. What happens if I print some stuff in Python code? Is it mixed with UART data?
I want to basically use the Pico as a USB to TTL adapter, but I am confused about how to read data sent from the PC to USB.