/* * Definitions for the FTDI USB Single Port Serial Converter - * known as FTDI_SIO (Serial Input/Output application of the chipset) * * The example I have is known as the USC-1000 which is available from * http://www.dse.co.nz - cat no XH4214 It looks similar to this: * http://www.dansdata.com/usbser.htm but I can't be sure There are other * USC-1000s which don't look like my device though so beware! * * The device is based on the FTDI FT8U100AX chip. It has a DB25 on one side, * USB on the other. * * Thanx to FTDI (http://www.ftdichip.com) for so kindly providing details * of the protocol required to talk to the device and ongoing assistence * during development. * * Bill Ryder - bryder@sgi.com formerly of Silicon Graphics, Inc.- wrote the * FTDI_SIO implementation. * * Philipp Gühring - pg@futureware.at - added the Device ID of the USB relais * from Rudolf Gugler * */#define FTDI_VID 0x0403 /* Vendor Id */#define FTDI_SIO_PID 0x8372 /* Product Id SIO application of 8U100AX */#define FTDI_8U232AM_PID 0x6001 /* Similar device to SIO above */#define FTDI_8U232AM_ALT_PID 0x6006 /* FTDI's alternate PID for above */#define FTDI_8U2232C_PID 0x6010 /* Dual channel device */#define FTDI_232RL_PID 0xFBFA /* Product ID for FT232RL */#define FTDI_4232H_PID 0x6011 /* Quad channel hi-speed device */#define FTDI_RELAIS_PID 0xFA10 /* Relais device from Rudolf Gugler */#define FTDI_NF_RIC_VID 0x0DCD /* Vendor Id */#define FTDI_NF_RIC_PID 0x0001 /* Product Id */#define FTDI_USBX_707_PID 0xF857 /* ADSTech IR Blaster USBX-707 *//* Larsen and Brusgaard AltiTrack/USBtrack */#define LARSENBRUSGAARD_VID 0x0FD8#define LB_ALTITRACK_PID 0x0001/* www.canusb.com Lawicel CANUSB device */#define FTDI_CANUSB_PID 0xFFA8 /* Product Id *//* AlphaMicro Components AMC-232USB01 device */#define FTDI_AMC232_PID 0xFF00 /* Product Id *//* www.candapter.com Ewert Energy Systems CANdapter device */#define FTDI_CANDAPTER_PID 0x9F80 /* Product Id *//* SCS HF Radio Modems PID's (http://www.scs-ptc.com) *//* the VID is the standard ftdi vid (FTDI_VID) */#define FTDI_SCS_DEVICE_0_PID 0xD010 /* SCS PTC-IIusb */#define FTDI_SCS_DEVICE_1_PID 0xD011 /* SCS Tracker / DSP TNC */#define FTDI_SCS_DEVICE_2_PID 0xD012#define FTDI_SCS_DEVICE_3_PID 0xD013#define FTDI_SCS_DEVICE_4_PID 0xD014#define FTDI_SCS_DEVICE_5_PID 0xD015#define FTDI_SCS_DEVICE_6_PID 0xD016#define FTDI_SCS_DEVICE_7_PID 0xD017/* ACT Solutions HomePro ZWave interface (http://www.act-solutions.com/HomePro.htm) */#define FTDI_ACTZWAVE_PID 0xF2D0/* www.starting-point-systems.com µChameleon device */#define FTDI_MICRO_CHAMELEON_PID 0xCAA0 /* Product Id *//* www.irtrans.de device */#define FTDI_IRTRANS_PID 0xFC60 /* Product Id *//* www.thoughttechnology.com/ TT-USB provide with procomp use ftdi_sio */#define FTDI_TTUSB_PID 0xFF20 /* Product Id */