From: Uwe Bonnes Date: Wed, 15 Sep 2010 15:31:01 +0000 (+0200) Subject: FT2232H: Handle suspend_pull_downs when encoding X-Git-Tag: v1.0rc1~133^2~56 X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=commitdiff_plain;h=6e6a1c3fab17eceb680cae1b01d027030ed1e728;hp=a886436ae0a98e39376383b176f05382009290e7 FT2232H: Handle suspend_pull_downs when encoding --- diff --git a/src/ftdi.c b/src/ftdi.c index 61b7a75..16af24e 100644 --- a/src/ftdi.c +++ b/src/ftdi.c @@ -2586,6 +2586,11 @@ int ftdi_eeprom_build(struct ftdi_context *ftdi) else output[0x01] &= ~SUSPEND_DBUS7; + if (eeprom->suspend_pull_downs == 1) + output[0x0A] |= 0x4; + else + output[0x0A] &= ~0x4; + if(eeprom->group0_drive > DRIVE_16MA) output[0x0c] |= DRIVE_16MA; else