|
From: <zw...@ma...> - 2009-05-31 03:07:48
|
Author: zwelch
Date: 2009-05-31 03:07:43 +0200 (Sun, 31 May 2009)
New Revision: 1955
Modified:
trunk/src/jtag/jlink.c
Log:
Peter Denison <op...@ma...>:
The debugging code in jlink_tap_execute() called when _DEBUG_USB_COMMS_ is
defined was using the entire cached scan length to print the results
buffers, and not the correct length of each individual buffer.
Modified: trunk/src/jtag/jlink.c
===================================================================
--- trunk/src/jtag/jlink.c 2009-05-31 00:49:03 UTC (rev 1954)
+++ trunk/src/jtag/jlink.c 2009-05-31 01:07:43 UTC (rev 1955)
@@ -809,7 +809,7 @@
DEBUG_JTAG_IO("pending scan result, length = %d", length);
#ifdef _DEBUG_USB_COMMS_
- jlink_debug_buffer(buffer, byte_length);
+ jlink_debug_buffer(buffer, TAP_SCAN_BYTES(length));
#endif
if (jtag_read_buffer(buffer, command) != ERROR_OK)
|