Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm trying to connect to CP2102 UART Bridge to send and receive data how can i implement that in java

share|improve this question
2  
What have you tried? – fge Jan 13 at 12:33

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.

1 Answer

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:

share|improve this answer
mmm what i'm trying to do exactly is to pass sequence of bytes to a pic with the CP2102 so do you think that i shouldn't do it with java directly ? – C.e. Abdullah Jan 13 at 13:06
@C.e.Abdullah: no, install the driver for your OS and use it as a serial port - that should be more than sufficient – thkala Jan 13 at 13:09
i've just accomplished the mission in java properly thanks anyway – C.e. Abdullah Jan 13 at 14:46

Not the answer you're looking for? Browse other questions tagged or ask your own question.