Closed
Description
CircuitPython has support for a single COM serial port over USB.
On the Pico, the only way I see to get it is to sacrifice the console:
boot.py
import usb_cdc
usb_cdc.enable(console=False, data=True) # Disable console, enable data
That's a very awkward solution because programming MicroPython without a console is too hard.
Somewhere the documentation says that there are difficulties in this area with some devices, without giving specifics.
So I don't even know which device to buy to get the required support.