summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-31 01:07:43 +0000
committerzwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-31 01:07:43 +0000
commit79cec48ba286453aa8973e7c6e55429d41107c63 (patch)
treed82af03c9a0d95a408454500de5ea3d666223f70 /src
parentcc639cc44cac9a7cdb50ccce7ab0fc5cb0df061f (diff)
downloadopenocd+libswd-79cec48ba286453aa8973e7c6e55429d41107c63.tar.gz
openocd+libswd-79cec48ba286453aa8973e7c6e55429d41107c63.tar.bz2
openocd+libswd-79cec48ba286453aa8973e7c6e55429d41107c63.tar.xz
openocd+libswd-79cec48ba286453aa8973e7c6e55429d41107c63.zip
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
Diffstat (limited to 'src')
-rw-r--r--src/jtag/jlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/jlink.c b/src/jtag/jlink.c
index adbc1bcc..4a800f7a 100644
--- a/src/jtag/jlink.c
+++ b/src/jtag/jlink.c
@@ -809,7 +809,7 @@ static int jlink_tap_execute(void)
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)