fix nSRST for flyswatter (Kees Jongenburger)

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1428 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 16 years ago
parent 8524c5c100
commit 6b49b22ef9

@ -1,3 +1,7 @@
2009-02-06 Arnim Laeuger <arniml@users.sourceforge.net>
* src/tap/cable/ft2232.c: fix nSRST for flyswatter (Kees Jongenburger)
2009-01-26 Kolja Waschk <kawk>
* UrJTAG.nsi: Script to create Windows installer using NSIS.

@ -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;

Loading…
Cancel
Save