X-Git-Url: http://developer.intra2net.com/git/?a=blobdiff_plain;f=src%2Fftdi_i.h;h=066790bcd70399c2468c12a1fcae25a1b9d1e230;hb=34b79ac71e43a07e5bd929592cba212c9f780672;hp=8d8c77eda760ee7d0a4ee077499fa2589f5ac11a;hpb=be4bae37b3f851d7e06610fe474d84a3b2371efb;p=libftdi diff --git a/src/ftdi_i.h b/src/ftdi_i.h index 8d8c77e..066790b 100644 --- a/src/ftdi_i.h +++ b/src/ftdi_i.h @@ -2,7 +2,7 @@ ftdi_i.h - description ------------------- begin : Don Sep 9 2011 - copyright : (C) 2003-2011 by Intra2net AG and the libftdi developers + copyright : (C) 2003-2014 by Intra2net AG and the libftdi developers email : opensource@intra2net.com ***************************************************************************/ @@ -21,6 +21,9 @@ /* Even on 93xx66 at max 256 bytes are used (AN_121)*/ #define FTDI_MAX_EEPROM_SIZE 256 +/** Max Power adjustment factor. */ +#define MAX_POWER_MILLIAMP_PER_UNIT 2 + /** \brief FTDI eeprom structure */ @@ -58,7 +61,7 @@ struct ftdi_eeprom int usb_version; /** Use usb version on FT2232 devices*/ int use_usb_version; - /** maximum power */ + /** maximum power */ int max_power; /** manufacturer name */ @@ -69,7 +72,7 @@ struct ftdi_eeprom char *serial; /* 2232D/H specific */ - /* Hardware type, 0 = RS232 Uart, 1 = 245 FIFO, 2 = CPU FIFO, + /* Hardware type, 0 = RS232 Uart, 1 = 245 FIFO, 2 = CPU FIFO, 4 = OPTO Isolate */ int channel_a_type; int channel_b_type; @@ -120,11 +123,19 @@ struct ftdi_eeprom int data_order; int flow_control; + /* FT-X Device and Peripheral control + * Fixme: Decode byte[0xa] + */ + int rs232_inversion; + /** eeprom size in bytes. This doesn't get stored in the eeprom but is the only way to pass it to ftdi_eeprom_build. */ int size; /* EEPROM Type 0x46 for 93xx46, 0x56 for 93xx56 and 0x66 for 93xx66*/ int chip; unsigned char buf[FTDI_MAX_EEPROM_SIZE]; + + /** device release number */ + int release_number; };