From: David B. <dbr...@us...> - 2010-01-15 22:03:55
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 183765707fb4d819b790b9431b83a9bf637fadc5 (commit) from 6c4a643d632c6cff647c5099bd450d1e417903ea (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 183765707fb4d819b790b9431b83a9bf637fadc5 Author: David Brownell <dbr...@us...> Date: Fri Jan 15 13:02:45 2010 -0800 ADIv5 improved diagnostic Don't just complain about an invalid ACK; say what the value was, to help troubleshooting. Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/target/arm_adi_v5.c b/src/target/arm_adi_v5.c index 1a86458..ba5db3b 100644 --- a/src/target/arm_adi_v5.c +++ b/src/target/arm_adi_v5.c @@ -305,8 +305,9 @@ int swjdp_transaction_endcheck(struct swjdp_common *swjdp) } else { - LOG_WARNING("Invalid ACK " - "in JTAG-DP transaction"); + LOG_WARNING("Invalid ACK %#x" + "in JTAG-DP transaction", + swjdp->ack); return ERROR_JTAG_DEVICE_ERROR; } ----------------------------------------------------------------------- Summary of changes: src/target/arm_adi_v5.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) hooks/post-receive -- Main OpenOCD repository |