What does FTDI mean?

A

Thread Starter

ARSAC

Dear people,

I heard about the USB-RS232 Serial Adapter with the Chipset FTDI, but I do not know what this kind of Chipset is. Could someone tell me what does FTDI means?

Thanks a lot for your help.

ARSAC
 
S

Sensitive Guy.

FTDI is a brand name for a company that make USB chips.

Their most common chip is an RS232 to USB converter but they also make other USB interface chips.

Since USB is serial (Universal Serial Bus, it was originally designed as a replacement for RS232) a conversion from RS232 to USB is a serial to serial conversion.

When you connect to the development board your computer uses USB to talk to the FTDI chip which converts that into RS232 which then connects to the ATMEGA microcontroller.

The reason why things like microcontrollers still use RS232 rather than USB is that it is far simpler to use, you don't need drivers or have to worry about who is the host and who is the master and a UART is a simple enough piece of logic to include in the micro. Basically if you are keeping things simple then RS232 is all you need.

However computers don't often have RS232 ports these days and so development boards often include parts like the FTDI USB-RS232 device to make it easier to connect a computer.

thanks to:
http://answers.yahoo.com/question/index?qid=20111219121807AA67lBg
 
Top