An Arduino Compatible Using CP2102

Standard Arduino boards use FTDI’s FT232RL to interface with computer’s USB port. Since FT232R is just a USB to UART converter, it is possible to build an Arduino compatible USB interface using other USB to UART chips.

One such alternative is Silicon LabsCP2102. I particularly like this USB to UART transceiver because very few extra components are required for it to work. As an added benefit, this chip is also cheaper than the ubiquitous FT232R. Of course, there are also a few trade offs. First of all, CP2102 does not provide a bit bang interface (the X3 pins on the Arduino board on the other hand can be used for bit bang operations, but the X3 pins are not soldered with header pins by default and thus for the average users no bit bang support should not be an issue). Secondly, CP2102 does not have the configurable general purpose I/O pins to drive the TX/RX LEDs. There are other minor differences as well (for instance the maximum transmission speed for FT232R is 3Mbps while CP2102 tops at 1Mbps. Both chips are more than adequate for the maximum 115,200 baud rate supported in Arduino environment), but they do not affect the performance in our application of interfacing with Arduino.

Here is the schematics for using CP2102 with ATmega328p (the circuit below is compatible with the Arduino IDE):

Arduino using CP2102

Arduino using CP2102

if you compare the above circuit with the official Arduino Duemilanove board you will see that the interfacing portions (RXD, TXD and TDR) are virtually identical.

Since CP2102 comes only in QFN-28 packaging, some people might find it slightly harder to deal with than TSSOP. Using the prototyping method I mentioned a few months back though, it is fairly straightforward to use the chip on a standard perf-board nevertheless. No special tools or stencils are needed. The following picture shows the USB to UART converter portion of the Arduino, which can be used to replace the FT232 break out board. I chose to break out the converter so that I could use it in other projects that require serial connections.

USB to Serial Board based on CP2102

USB to Serial Board based on CP2102

If you are running Linux, you do not need any third-party device drivers. All recent Linux kernels support CP210x via the usbserial kernel module. Once connected, you should be able to use dmesg and see these messages:

[ 8333.572512] usb 8-2: new full speed USB device using uhci_hcd and address 3
[ 8333.744748] usb 8-2: configuration #1 chosen from 1 choice
[ 8333.785114] usbcore: registered new interface driver usbserial
[ 8333.785161] USB Serial support registered for generic
[ 8333.785221] usbcore: registered new interface driver usbserial_generic
[ 8333.785222] usbserial: USB Serial Driver core
[ 8333.792419] USB Serial support registered for cp210x
[ 8333.792460] cp210x 8-2:1.0: cp210x converter detected
[ 8333.920011] usb 8-2: reset full speed USB device using uhci_hcd and address 3
[ 8334.076745] usb 8-2: cp210x converter now attached to ttyUSB0
[ 8334.076760] usbcore: registered new interface driver cp210x
[ 8334.076762] cp210x: v0.09:Silicon Labs CP210x RS232 serial adaptor driver

If you are running Windows, you will need to install the royalty-free driver from Silicon Labs directly.

Under Linux, CP210x shows up as a a ttyUSB device. You can use the Arduino IDE to program your ATmega328p’s just as you would with an official Arduino. Serial communication via the serial monitor works the same way as well. Like the official Arduino, the above circuit also automatically resets whenever you upload a program.

The following picture shows this Arduino compatible circuit in action.

An Arduino Compatible Using CP2102

An Arduino Compatible Using CP2102

10 Comments

  1. Fernando says:

    Can the digital pins 0 and 1 (RX and TX) of the arduino be used or must they be reserved for cp2102? I have read some people complaining about this chip when connected to the arduino…

    • kwong says:

      RX/TX pins (digital pin 0 and 1) should not be used for other purposes if you need to use the USB capability. This is similar to the situations with the official Arduino board.

      As far as Linux is concerned, I don’t believe there’s any issue. I did read about issues some people had while running under MacOS though. But if you are using Linux (or Windows), you should be all set.

  2. Brian says:

    Hi!

    Which ATmega328p bootloader were you using with this CP2102 interface, and do you happen to have an Eagle schematic for the circuit above?

    Thanks!

    • kwong says:

      I used the bootloader for Duemilanove. But I am pretty sure any bootloader should work.

      Sorry, I don’t have the schematic file…. I created the schematics for illustration purpose only and I did not design any board layout for this project.

  3. Hi,
    for using building the cp2102, the capacitors which you have used is enough? (when I saw some images on ebay, there was more components then these two)

    And what is the input voltage you are giving 5v or 3.3V?

Leave a Reply