From 11e6127401d43ba6226ac943c90263315a58732d Mon Sep 17 00:00:00 2001 From: Tim Newsome Date: Wed, 11 Sep 2019 10:48:18 -0700 Subject: Display IDCODE in message about it not existing. (#404) Change-Id: I1d1ca10ec62502c4757b64122e190ff964616684 --- src/jtag/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jtag/core.c b/src/jtag/core.c index f90ae99..876faae 100644 --- a/src/jtag/core.c +++ b/src/jtag/core.c @@ -1107,7 +1107,7 @@ static int jtag_examine_chain(void) if ((idcode & 1) == 0) { /* Zero for LSB indicates a device in bypass */ - LOG_INFO("TAP %s does not have IDCODE", tap->dotted_name); + LOG_INFO("TAP %s has invalid IDCODE (0x%x)", tap->dotted_name, idcode); tap->hasidcode = false; tap->idcode = 0; -- cgit v1.1