Microcontroller – Can I Use This USB-to-UART Converter with a MCU?

microcontrolleruartusb

My project is as follows:

enter image description here

I need to choose an USB-to-UART converter to be able to communicate with an MCU from my PC through a serial interface. I was thiking of using this part : FT234XD-R (datasheet).

I have one question: Can this chip be interfaced with a 3.3 V MCU?

In the datasheet they give application examples: USB-to-RS232, USB-to-RS422 and USB-to-RS485 converters, but they do not give a USB-to-UART converter example. I need to make sure that the voltage levels of the RXD/TXD pins can be handled by my MCU, for example I know that RS232, RS422 and RS485 voltage levels cannot be handled by a 3.3 V MCU.

Best Answer

It's safe to use with an MCU directly. This is what the chip is designed for.

Apply 3.3V to VCCIO for 3V3 logic, or use the on-chip regulator by shorting the 3.3VOUT pin (pin-3) to VCCIO pin (Don't forget to place a decoupling capacitor to this pin). You can use the on-chip 3V3 regulator to supply your MCU and externals if the total consumption is less than 50 mA.

If you want to convert the logic-level RX/TX signals to RS-232, -422, or -485 then use an extra transceiver such as MAX232, MAX485, etc.

Related Topic