Replies: 4 comments
-
cp210x and ftdi driver isn't supported yet |
Beta Was this translation helpful? Give feedback.
0 replies
-
See #2488. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Top url
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Updated, it is already supported for some time |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Apologies in advance if I'm not using the correct terminology, this is my first attempt programming microcontrollers and I'm new to this world. I'm trying to connect a USB device
CP2104
to an RP2040 Pi Pico running as a USB host. My intention is to control the pico with this device. I'm able to run thebare_api
example and get some data on the Device Descriptor:In a Linux machine, I'm also able to connect with Minicom (
minicom -b 115200 -H -D /dev/ttyUSB0
) to the device. If I use the buttons and physical controls on the device, I see the codes in the terminal.I haven't been able to read the codes from the device within the pico, I tried the CDC host example (being a USB to UART bridge, I thought this one was my best shot) as well as the HID one (I give it a shot as I was not successful with the CDC case), in both, I see the calls to
tuh_mount_cb
andtuh_umount_cb
but none of the specific mount callbacks for CDC nor HID are ever called (like thetuh_cdc_mount_cb
one).I also have tried the examples on Arduino (https://github.com/adafruit/Adafruit_TinyUSB_Arduino/blob/master/examples/DualRole/serial_host_bridge/serial_host_bridge.ino) with the same results, I can see when the device is mounted, but cannot read any event from it.
I appreciate any help, thanks!
Beta Was this translation helpful? Give feedback.
All reactions