diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 0166c9c6..8cff7760 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,3 +1,7 @@ +2009-02-06 Arnim Laeuger + + * src/tap/cable/ft2232.c: fix nSRST for flyswatter (Kees Jongenburger) + 2009-01-26 Kolja Waschk * UrJTAG.nsi: Script to create Windows installer using NSIS. diff --git a/jtag/src/tap/cable/ft2232.c b/jtag/src/tap/cable/ft2232.c index d67e9128..26fb6369 100644 --- a/jtag/src/tap/cable/ft2232.c +++ b/jtag/src/tap/cable/ft2232.c @@ -609,8 +609,9 @@ ft2232_flyswatter_init( cable_t *cable ) if (usbconn_open( cable->link.usb )) return -1; /* static low byte value and direction: - nTRST = 1, nSRST = 1, set nOE1 and nOE2 to '0' -> activate output enables */ - params->low_byte_value = BITMASK_FLYSWATTER_nTRST | BIT_FLYSWATTER_nSRST; + nTRST = 1, nSRST = 1 (ADBUS5 inverted), + set nOE1 and nOE2 to '0' -> activate output enables */ + params->low_byte_value = BITMASK_FLYSWATTER_nTRST; params->low_byte_dir = BITMASK_FLYSWATTER_nOE1 | BITMASK_FLYSWATTER_nOE2 | BITMASK_FLYSWATTER_nTRST | BITMASK_FLYSWATTER_nSRST;