X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=src%2Fjtag%2Fdrivers%2Fft2232.c;h=c4a74ef7f38de2171336214131762d7a34cf5840;hb=fb803581830ca78eff59e8c8a24192c36bd63c8d;hp=9a40ed9a5f25e54a081777dd5a4c2b81d5b9ed1e;hpb=101c602b5eb67725495414da0016d15135644915;p=fw%2Fopenocd diff --git a/src/jtag/drivers/ft2232.c b/src/jtag/drivers/ft2232.c index 9a40ed9a5..c4a74ef7f 100644 --- a/src/jtag/drivers/ft2232.c +++ b/src/jtag/drivers/ft2232.c @@ -24,7 +24,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * -* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * +* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * ***************************************************************************/ /** @@ -1061,7 +1061,8 @@ static void ft2232_add_scan(bool ir_scan, enum scan_type type, uint8_t *buffer, /* LOG_DEBUG("added TDI bits (i %i)", bits_left - 1); */ } buffer_write(0x0); - buffer_write(last_bit); + if (type != SCAN_IN) + buffer_write(last_bit); } else { int tms_bits; int tms_count; @@ -1107,6 +1108,11 @@ static int ft2232_large_scan(struct scan_command *cmd, int retval; int thisrun_read = 0; + if (!receive_buffer) { + LOG_ERROR("failed to allocate memory"); + exit(-1); + } + if (cmd->ir_scan) { LOG_ERROR("BUG: large IR scans are not supported"); exit(-1); @@ -1272,6 +1278,8 @@ static int ft2232_large_scan(struct scan_command *cmd, (int)bytes_read); } + free(receive_buffer); + return ERROR_OK; } @@ -1503,7 +1511,8 @@ static void minimodule_reset(int trst, int srst) static void turtle_reset(int trst, int srst) { - trst = trst; + if (trst == 1) + LOG_ERROR("Can't assert TRST: the adapter lacks this signal"); if (srst == 1) low_output |= nSRST; @@ -3133,9 +3142,8 @@ static void flossjtag_blink(void) static int ft2232_quit(void) { #if BUILD_FT2232_FTD2XX == 1 - FT_STATUS status; - status = FT_Close(ftdih); + FT_Close(ftdih); #elif BUILD_FT2232_LIBFTDI == 1 ftdi_usb_close(&ftdic);