diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 9cfd4abe..d5bb887e 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,5 +1,7 @@ 2008-04-19 Kolja Waschk + * src/tap/parport/ftd2xx.c: SetBaudRate to 3E6, not 48E6. Should + fix [ 1925509 ] ftd2xx: SetBaudRate fails with FT245 * src/flash/intel.c: Handle chips that support "Mitsubishi standard/enhanced command set" just like Intel chips. Need to do more research about the differences (if any) [1946559] diff --git a/jtag/src/tap/parport/ftd2xx.c b/jtag/src/tap/parport/ftd2xx.c index c48b6e1b..722b073e 100644 --- a/jtag/src/tap/parport/ftd2xx.c +++ b/jtag/src/tap/parport/ftd2xx.c @@ -254,7 +254,7 @@ ftd2xx_std_open( parport_t *parport ) FT_Close(fc); return -1; } - if ((status = FT_SetBaudRate(fc, 48000000)) != FT_OK) { + if ((status = FT_SetBaudRate(fc, 3E6)) != FT_OK) { fprintf(stderr, "Can't set baudrate: %li\n", status); FT_Close(fc); return -1;