What is FTDI chip?
FTDI chips are the chips which are developed by Future Technology Devices International (http://www.ftdichip.com/ ).
FTDI chips are used in USB adapters to connect to RS232 and parallel FIFO hardware interfaces. The most frequent usage is USB-2-COM interface.
They are used in:
- Mobile phone cables.
The mobile phones have RS232 or UART output, and PC may have USB only, the chip converts RS232 into USB. And the driver installed on PC creates the virtual device (usually, virtual COM port), which is used for communication. - Service Boxes
These are service tools used by Phone repair centers and Car repair service. These are the devices which are connected to PC via USB, and - on the other side - to the various hardware. - Hardware Debuggers (JTAG)
- Any other device that needs to be USB-connected to PC, and has the RS232 port on the other side.
How to find out if the device is FTDI-based?
Well, you may disassemble it and read the labels on the chips, but it’s not the way you want it. There’s more humane method.
There are original drivers on FTDI site. If you look at the files which are included into the driver package there will be such set of files:

So if your device has any of these files in the driver list it’s FTDI-based.
To see the drivers for the device:
- Go to Device Manager
- Select the device
- Open context menu and select Properties
- Switch to Driver and click Driver Details button.
For example:

This device has FTD2XX.dll in the driver files list. And the provided name is FTDI. This device is FTDI-based. Some manufacturers may rename the driver (.sys), but the copyright information will reveal the real driver manufacturer.
How to interact with it?
Fortunately, FTDI provides the API. There’s a generic API set which can be used with all FTDI chips.
API is provided via FTD2XX.dll. It’s a DLL which interacts with FTD2XX.SYS driver.

There’s a header file and library file within FTDI driver package: ftd2xx.h and ftd2xx.lib files.
The .lib file is COFF format, so it can be used in Visual Studio without any problem.
FTDI API usage
The API set has two interfaces “classical” (functions with “FT_” prefix) and “Win32 API” (functions with “FT_W32_” prefix).
“Classical” is cross-platform interface.
“Win32 API” is a set of Windows-only functions. It’s much alike Windows API, which is used to work with serial ports. So porting the code to FTDI functions is quite simple.
The main functions are:
FT_W32_CreateFile() / FT_OpenEx()
Opens the handle to the specified FTDI chip connection
FT_W32_WriteFile() / FT_Write()
Sends data over virtual COM port.
FT_W32_ReadFile() / FT_Read()
Reads data from virtual COM port
FT_W32_CloseHandle() / FT_Close()
Closes connection handle.
There are functions that allow to set up the port:
FT_SetBaudRate()
Sets the baud rate for the connection
FT_SetDataCharacteristics()
Sets the number of bits in the byte, parity, etc
FT_ClrDtr()
Clears DTR signal on the virtual COM port
FT_SetDtr()
Sets DTR signal on the virtual COM port
FT_ClrRts()
Clears RTS signal on the virtual COM port
FT_SetRts()
Sets RTS signal on the virtual COM port
etc.
For Windows there’s no limitation about using the functions of Classical and Win32 API interfaces together. So you may combine it.
Opening the virtual serial port
There are multiple ways to open FTDI device: by index, by description, by serial number, by location. These types of information may be used to open the device via FT_W32_CreateFile();.
To obtain the information about the connected devices FT_ListDevices() should be used.
Example:
ftStatus = FT_ListDevices(0, Buf, FT_LIST_BY_INDEX | FT_OPEN_BY_SERIAL_NUMBER);
if (ftStatus!=FT_OK) //Get first device serial number
{
printf("Couldn't get FTDI device name");
return 0;
}
ftHandle = FT_W32_CreateFile(Buf,
GENERIC_READ|GENERIC_WRITE,
0,
0,
OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED | FT_OPEN_BY_SERIAL_NUMBER,
0); // Open device by serial number
There are several functions, which can provide the additional information about the connected devices:
FT_GetDeviceInfoList(),FT_CreateDeviceInfoList(), FT_GetDeviceInfoDetail(), etc.
Setting up the port
The code for setting the typical serial port settings to 115200 Bps, 8 bit per byte, 1 stop bit and no parity will look like this:
ftStatus=FT_SetBaudRate(ftHandle, FT_BAUD_115200);
ftStatus=FT_SetDataCharacteristics(ftHandle,
FT_BITS_8,
FT_STOP_BITS_1,
FT_PARITY_NONE);
ftStatus=FT_ClrDtr(ftHandle);
ftStatus=FT_SetDtr(ftHandle);
Also there are functions to setup the port in Windows style:
FT_W32_GetCommState(),FT_W32_SetCommState(),FT_W32_SetupComm(), etc.
Reading and Writing
Usage of FT_W32_WriteFile() and FT_W32_ReadFile() functions is similar to WriteFile() and ReadFile(). If the handle is opened in OVERLAPPED mode, the functions are asynchronous, otherwise they are synchronous. So reading and writing can be made in standard way:
DWORD Written=0;
unsigned char cmd[]={'A','T','r','n'};
ftStatus=FT_W32_WriteFile(ftHandle,cmd,sizeof(cmd),&Written,&Ovl);
if (WaitForSingleObject(Ovl.hEvent,INFINITE)!=WAIT_OBJECT_0)
throw std::exception("Error waiting write to complete");
unsigned char Buf[250];
ftStatus=FT_W32_ReadFile(ftHandle,Buf,sizeof(Buf),&TotalRead,&Ovl);
if (WaitForSingleObject(Ovl.hEvent,1000)!=WAIT_OBJECT_0)
throw std::exception("Error waiting read operation");
EEPROM programming
There are also APIs that allow to program FTDI chip. FTDI chip has EEPROM within it. EEPROM contains the chip settings block and the user area block. It’s possible to read and write both of these blocks.
Warning! Programming EEPROM is dangerous operation. Writing the invalid data may cause improper work of the device. You are doing it at your own risk.
APIs
The APIs to manage user area block:
FT_EE_UASize()
Gets the size of User Area.
FT_EE_UAWrite()
Write data to User Area.
FT_EE_UARead()
Read User Area Data
Reading the area is quite simple:
DWORD UASize=0;
FT_EE_UASize(ftHandle,&UASize);
UCHAR * pUAData=new UCHAR[UASize];
DWORD SizeRead=0;
ftStatus=FT_EE_UARead(ftHandle,pUAData,UASize,&SizeRead);
The APIs to manage whole EEPROM:
FT_EE_Program()
Writes to EEPROM special structure (FT_PROGRAM_DATA), which contains chip settings
FT_EE_ProgramEx()
Writes to EEPROM special structure (FT_PROGRAM_DATA), which contains chip settings, but the USB String descriptors are passed separately from FT_PROGRAM_DATA structure
FT_WriteEE()
Writes data to EEPROM directly.
FT_EE_Read()
Reads FT_PROGRAM_DATA structure from EEPROM data.
FT_EE_ReadEx()
Reads FT_PROGRAM_DATA structure from EEPROM data and USB String descriptors are passed separately
FT_ReadEE()
Reads EEPROM data directly
FT_EraseEE()
Erases EEPROM contents
Dumping EEPROM
Dumping EEPROM is a bit tricky, because some chips have the internal EEPROM, and some may have external one.
Quote:
The FT2232C supports 93C46 (64 x 16 bit), 93C56 (128 x 16 bit), and 93C66 (256 x 16 bit) EEPROMs.
So there can be various sizes.
Here’s the example of EEPROM dumping for 64 x 16 bit:
WORD EEPromData[0x40]={0};
DWORD Offset=0;
while (Offset < (sizeof(EEPromData) / sizeof (WORD)) )
{
WORD DataChunk=0;
ftStatus=FT_ReadEE(ftHandle,Offset,&EEPromData[Offset]);
if (ftStatus!=FT_OK)
break;
Offset++;
}
Here’s a second trick. If you look at the function declaration for FT_ReadEE:
FTD2XX_API
FT_STATUS WINAPI FT_ReadEE(
FT_HANDLE ftHandle,
DWORD dwWordOffset,
LPWORD lpwValue
);
dwWordOffset argument is actually index of the word value in EEPROM, not the offset in the meaning of “data offset”.
Data in the settings block
The settings block contains VID and PID of USB device, so if it’s changed, the device will be treated like some other device. Default values of VID and PID for FTDI chip are 0x0403 and 0x6001 accordingly, but these values are overwritten by the device manufacturers.
The settings block contains the product description strings (USB String descriptors): Manufacturer, Manufacturer ID and Description. Also there’s device serial number, which can be changed by EEPROM programming.
Warning one more time! Changing the EEPROM setting may also cause the software failures if the invalid data is written to EEPROM.
Download sample source code for FTDI interaction.
Links
The information about FTDI chips can be found in Data Sheets part of FTDI official site:
http://www.ftdichip.com/Documents/DataSheets.htm
Additional information about API can be found in FTD2XX Programming Manual:
http://www.ftdichip.com/Documents/ProgramGuides/D2XXPG34.pdf
Driver Package:
http://www.ftdichip.com/Drivers/D2XX.htm
B2C Web Portals
By: Digisha Modi | 08/01/2010Business-to-consumer B2C portal Development is build to improve at present business process by adding automated processes between trading for e.g. Its improve the communication between vendor and final product manufacturer but at the same time it could serve a good tool between manufacturer and distributors it improve level of communication, real time reporting and at end improve supply chain. B2C Ecommerce Development India website development could become an edge between you and your competito
B2B Portal Development
By: Digisha Modi | 08/01/2010A b2b portal or a business to business portal is a dedicated online place which provides a platform to the buyers and sellers to conduct business activities. It acts as a base for customers, suppliers, dealers and wholesalers to get business information and an avenue for online transactions. Such a portal is a new age marvel and an absolute necessity for any global business.
Ajax Development Service Offer More Resistance
By: Arun Kumar | 08/01/2010The web development companies use various innovative technologies like AJAX development services (Asynchronous JavaScript and XML) and ASP.net which are the latest in the business to provide their customers with the best web designs.
Venkat Subramaniam Teaches How to Handle Pointy Haired Bosses and Be a Pragmatic Programmer
By: Shaguf Mohtisham | 08/01/2010GIDS is the gold standard for India's software developer ecosystem for gaining exposure to and evaluating new projects, tools, services, platforms,languages, software and standards.
Three Ways to Reset SA Password!
By: y | 08/01/2010Three Ways to Reset SA Password
iPhone Application : Revolutionizing the Market
By: webmaster | 07/01/2010Apple iPhone is one of the latest technological device which has hit the market to meet the thirst of its customers for the latest gadgets. Its transformation into something that resembles a miniature, personal computer has given birth to a whole new side market. Its applications range from the helpful to entertainment.
iPhone outstrips Google's Android
By: webmaster | 07/01/2010After a quick start, the Android-powered Google-phone has begun to fall behind the iPhone in a critical measure of smartphone success. After matching the iPhone nearly hit for hit in its first five months on the market, Google’s Android has fallen behind the pace set by Apple’s
Web Portal Development
By: Digisha Modi | 07/01/2010Web portals and Content Management Systems help improve on customer satisfaction and customer loyalty. By providing valuable information and services to customers on line, there is a much greater potential for increased sales and growth. Of course it is critical to maintain other forms of customer service, but in today's technology environment, more people are going to the internet as their first point of contact with businesses of all sizes.
Easy way to set up global API hooks
By: Apriorit Inc. | 28/12/2009 | ProgrammingThis article describes an easy way to set up system-wide global API hooks. It uses AppInit_DLLs registry key for DLL injection and Mhook library for API hooking. To illustrate this technique we will show how to easily hide calc.exe from the list of running processes.
Writing plugins for RDesktop
By: Apriorit Inc. | 01/12/2009 | ProgrammingThis article was mostly written for Linux developers. The article gives a method of writing out-of-process plugins to open source software – i.e., plugins that will work as a part of the software but will run in another process, so their code may stay closed.
Forbidding the Clipboard for the specified process
By: Apriorit Inc. | 11/11/2009 | ProgrammingThough the Clipboard is one of the fundamental parts of the Windows operating system, there is little information about how it works, especially in the low level. In this article, I’m going to tell you something about the Clipboard internals by showing how you can forbid access to it.
Writing UDFs for Firebird Embedded SQL Server
By: Apriorit Inc. | 24/10/2009 | ProgrammingThis article was written mainly for developers who use Firebird Embedded SQL Server in .Net framework applications and want to speed up or optimize DB queries. We will describe how to create your own native Firebird extension and show some approaches how to use it in managed code applications.
The Basics of The Palm Pre Linux
By: Apriorit Inc. | 23/09/2009 | ProgrammingThis article describes the process of initial configuration and basic work with Palm Web OS on the lower level than it's described in Palm SDK docs.
OBEX Protocol for Samsung GSM devices specification
By: Apriorit Inc. | 19/08/2009 | ProgrammingThis article describes the protocol of data exchange that is the modification of the well-known OBEX protocol used in the GSM Samsung phones from the SHP family. The described modification of this protocol lets you write data to the phone and also get and save them.
C++ Wrapper Library for Firebird Embedded SQL
By: Apriorit Inc. | 19/08/2009 | ProgrammingThis article is devoted to the Embedded Firebird database usage and also development of C++ wrapper of this database.
Interaction with FTDI chip
By: Apriorit Inc. | 09/07/2009 | ProgrammingThis article shows how to use FTDI API to interact with the devices, which have FTDI chip within. The basic API set necessary for common operations is described. The article also touches upon topic of FTDI chips EEPROM programming.