Hello arduino community! i have recently bought a silicon labs cp210x usb to uart bridge so i can communicate via serial with my Leonardo, but it does not seem to work. I have tx -> rx, rx -> tx, 5v -> 5v, and ground -> ground.
The cp210 only gives my arduino power, i can not receive or transmit any information in the serial monitor. Nor can i upload any sketches.
I tried with all of my boards, same thing.
here is what the device manager and the arduino ide say.
spycatcher2k:
You cannot upload the the Leonardo this way! The Leo uses a virtual com device, not connected to pins 0 & 1.
that sucks, but not the biggest problem in the world. i bought it for serial communication with my pc (any form of communication with the arduino from my pc that does not involve the usb port would work aswell if no one knows a fix for this).
tldr my project is taking mouse input from one pc, and sending it to another via hid.
aidenn:
Hello arduino community! i have recently bought a silicon labs cp210x usb to uart bridge so i can communicate via serial with my Leonardo, but it does not seem to work. I have tx -> rx, rx -> tx, 5v -> 5v, and ground -> ground.
The cp210 only gives my arduino power, i can not receive or transmit any information in the serial monitor. Nor can i upload any sketches.
I tried with all of my boards, same thing.
here is what the device manager and the arduino ide say.
any information would be great.
I feel like at this point im better off ordering a new one does anyone know any usb to uart devices that 100% work? any other form of communication that does not involve the usb port of the Leonardo would also work <3
ShermanP:
The CP2102 is a 3.3V chip. Are you using a module of some kind that passes te 5V USB power through? A diagram of your circuit would help.
Also, are you sure the driver is installed on your computer?
yep the driver is installed on my computer! if you look at the image i linked before you will see it shows up in device manager.
and what it only goes to 3.3 voltz?? but on the board its self it has a 5v+ option!
my circuit is pretty simple:
rx->tx
tx->rx
5v->5v
grnd->grnd
the firmware i have on my arduino works perfectly if i hook it up directly using a usb, but the CP2102 does not allow any sort of serial communication. i cant transfer or receive data.
And when using Serial, be aware of the pitfalls; disconnecting the USB when the code contains instructions to write to Serial can bring the Leonardo to a near grinding halt. Use Serial.availableForWrite().
aidenn:
this was the issue thank you so much. when i write my cpp application would i have to do anything different?
Only the code running on the Arduino (which is, by the way, written in C++ too) needs to know that the port in question is called Serial1 from the Arduino's perspective.
As an aside, I suspect that one could build optiboot for a 32u4 and have it run on UART1 and wire up the auto-reset circuit with DTR of the serial adapter like usual. You'd need a modified board definition, too, naturally... I almost went and did it, but then I remembered that I have other things to do than get diverted by stuff like this...