i'm trying to connect to CP2102 UART Bridge to send and receive data how can i implement that in java
|
closed as not a real question by Mat, ethrbunny, home, Jan Dvorak, brian d foy Jan 13 at 13:55
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
In general you cannot (or should not) do that in Java - CP2102 is a USB-to-serial device and Java is not very good at talking to USB devices, at least not out-of-the-box, portably and without reliability issues. Admittedly, a large part of that has to do with the difficulties of userspace USB drivers in general, but Java makes quite a few things even more difficult. In addition, you would have to write a Java driver for your bridge chip, which is generally not an easy task. In your place I would just install the CP2102 drivers for my operating system and use the device as a normal serial port, e.g. with RXTX. If you do insist of talking to the USB chip directly, you could prepare yourself for a long and tiring process and have a look at these: |
|||||||
|
