Go to file
Jim Paris 1e59f6ab19 Add support for FTDI latency timer
This is needed by the Windows driver to avoid multi-second delays
while opening the port.
2018-09-12 11:36:48 -04:00
config Initial commit, based on code from my accelog project 2012-10-01 01:20:40 -04:00
lufa@737382aeda Update LUFA 2018-09-11 15:22:44 -04:00
.dir-locals.el Updated README 2012-10-01 01:34:45 -04:00
.gitignore Initial commit, based on code from my accelog project 2012-10-01 01:20:40 -04:00
.gitmodules Initial commit, based on code from my accelog project 2012-10-01 01:20:40 -04:00
ftdi.c Add support for FTDI latency timer 2018-09-12 11:36:48 -04:00
ftdi.h Add new FTDI_DELAY_INIT_TX to improve startup behavior 2018-09-12 10:30:03 -04:00
LICENSE Add license 2012-10-01 02:12:39 -04:00
main.c Initial commit, based on code from my accelog project 2012-10-01 01:20:40 -04:00
Makefile Removed terminal.py -- use https://git.jim.sh/jim/terminal.git instead. 2013-11-10 12:38:15 -05:00
queue.h Initial commit, based on code from my accelog project 2012-10-01 01:20:40 -04:00
README.md Fix README 2012-10-01 02:13:34 -04:00
reset.c Initial commit, based on code from my accelog project 2012-10-01 01:20:40 -04:00

FTDI serial chip emulation for LUFA

Written by Jim Paris jim@jtan.com

Description

This project is an example of FTDI usb-to-serial chip emulation for LUFA. It is fully interrupt-driven. It acts as a FT232RL with id 0403:6001. On Linux, the corresponding host driver is ftdi_sio.

Note that it's probably against the EULA of the proprietary FTDI Windows driver to use it with non-FTDI hardware. And using someone else's VID will prevent you from passing USB-IF compliance tests.

Building

git submodule init
git submodule update
make

Configuration

Basic configuration of the FTDI emulation is in ftdi.h. Read and write buffers are maintained in a FIFO queue of length FTDI_TX_QUEUE_LEN and FTDI_RX_QUEUE_LEN. The latter must be greater than the endpoint size. For a smaller memory footprint, FTDI_TXRX_EPSIZE can be reduced (try 16).

Initialization

Call void ftdi_init(int flags) after the corresponding LUFA USB_Init(). Valid flags are a bitwise OR of the following:

FTDI_NO_STDIO     Don't reconfigure libc's stdio
FTDI_STDIO        Point stdio routines to ftdi_putchar / ftdi_getchar

FTDI_NONBLOCKING  Neither ftdi_putchar nor ftdi_getchar will block.
FTDI_BLOCKING_IN  ftdi_getchar will block if no data is available
FTDI_BLOCKING_OUT ftdi_putchar will block is no room in TX buffer
FTDI_BLOCKING     Both ftdi_getchar and ftdi_putchar will block

When input is nonblocking, ftdi_getchar will return -1 if no data is available. When output is nonblocking, ftdi_putchar will drop data if no TX buffer space is available. Regardless of blocking status, if the RX buffer is full, data received from the PC will be dropped.

License

BSD 2-clause, see LICENSE