From: Uwe Bonnes Date: Fri, 10 Sep 2010 21:20:05 +0000 (+0200) Subject: Correct the CBUS decode string arrays X-Git-Tag: v1.0rc1~133^2~69 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=13f00d3cd7a7cef13df7b1ecc0b0f0c678456cca Correct the CBUS decode string arrays --- diff --git a/src/ftdi.c b/src/ftdi.c index 8610857..67fd259 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -2912,9 +2912,9 @@ int ftdi_eeprom_decode(struct ftdi_context *ftdi, unsigned char *buf, int size, if (ftdi->type == TYPE_R) { char *cbus_mux[] = {"TXDEN","PWREN","RXLED", "TXLED","TX+RXLED", - "SLEEP","CLK48","CLK24R","CLK122","CLK6", + "SLEEP","CLK48","CLK24","CLK12","CLK6", "IOMODE","BB_WR","BB_RD"}; - char *cbus_BB[] = {"RXF","TXE","WR", "RD"}; + char *cbus_BB[] = {"RXF","TXE","RD", "WR"}; int i; if(eeprom->invert)