Print out really long scan values.
parent
63f6999b6d
commit
40e42c5a04
|
@ -438,13 +438,21 @@ static void debug_jtag_io_value(const char *prefix, const uint8_t *value,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char buf[80];
|
char buf[33];
|
||||||
|
char *bufp = buf;
|
||||||
unsigned int chars = (num_bits + 3) / 4;
|
unsigned int chars = (num_bits + 3) / 4;
|
||||||
for (unsigned int i = 0; i < chars && i < 79; i++) {
|
for (unsigned int i = 0; i < chars; i++) {
|
||||||
int start_bit = 4 * (chars - i - 1);
|
if (i && (i % 32) == 0) {
|
||||||
sprintf(buf + i, "%01x", buf_get_u32(value, start_bit, 4));
|
|
||||||
}
|
|
||||||
DEBUG_JTAG_IO(" %s%s", prefix, buf);
|
DEBUG_JTAG_IO(" %s%s", prefix, buf);
|
||||||
|
bufp = buf;
|
||||||
|
}
|
||||||
|
int start_bit = 4 * (chars - i - 1);
|
||||||
|
sprintf(bufp, "%01x", buf_get_u32(value, start_bit, 4));
|
||||||
|
bufp++;
|
||||||
|
}
|
||||||
|
if (bufp != buf) {
|
||||||
|
DEBUG_JTAG_IO(" %s%s", prefix, buf);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue