Peter Denison <openwrt@marshadder.org>:
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. git-svn-id: svn://svn.berlios.de/openocd/trunk@1955 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
cc639cc44c
commit
79cec48ba2
|
@ -809,7 +809,7 @@ static int jlink_tap_execute(void)
|
||||||
DEBUG_JTAG_IO("pending scan result, length = %d", length);
|
DEBUG_JTAG_IO("pending scan result, length = %d", length);
|
||||||
|
|
||||||
#ifdef _DEBUG_USB_COMMS_
|
#ifdef _DEBUG_USB_COMMS_
|
||||||
jlink_debug_buffer(buffer, byte_length);
|
jlink_debug_buffer(buffer, TAP_SCAN_BYTES(length));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (jtag_read_buffer(buffer, command) != ERROR_OK)
|
if (jtag_read_buffer(buffer, command) != ERROR_OK)
|
||||||
|
|
Loading…
Reference in New Issue