This is an automated email from Gerrit. Forest Crossman ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/4323
-- gerrit commit d2489c275a815c37fa3a49f68b30d52a54d54ddc Author: Forest Crossman <[email protected]> Date: Fri Jan 5 22:11:38 2018 -0600 jtag/drivers/kitprog: Enable LOG_DEBUG_IO Change-Id: Ic01b0acf01e18bcb2bf98c101c7b5888cdc10186 Signed-off-by: Forest Crossman <[email protected]> diff --git a/src/jtag/drivers/kitprog.c b/src/jtag/drivers/kitprog.c index 584da8c..db5b62e 100644 --- a/src/jtag/drivers/kitprog.c +++ b/src/jtag/drivers/kitprog.c @@ -681,7 +681,7 @@ static int kitprog_swd_run_queue(void) uint8_t *buffer = kitprog_handle->packet_buffer; do { - LOG_DEBUG("Executing %d queued transactions", pending_transfer_count); + LOG_DEBUG_IO("Executing %d queued transactions", pending_transfer_count); if (queued_retval != ERROR_OK) { LOG_DEBUG("Skipping due to previous errors: %d", queued_retval); @@ -714,12 +714,10 @@ static int kitprog_swd_run_queue(void) data &= ~CORUNDETECT; } -#if 0 - LOG_DEBUG("%s %s reg %x %"PRIx32, + LOG_DEBUG_IO("%s %s reg %x %"PRIx32, cmd & SWD_CMD_APnDP ? "AP" : "DP", cmd & SWD_CMD_RnW ? "read" : "write", (cmd & SWD_CMD_A32) >> 1, data); -#endif buffer[write_count++] = (cmd | SWD_CMD_START | SWD_CMD_PARK) & ~SWD_CMD_STOP; read_count++; @@ -764,9 +762,7 @@ static int kitprog_swd_run_queue(void) if (pending_transfers[i].cmd & SWD_CMD_RnW) { uint32_t data = le_to_h_u32(&buffer[read_index]); -#if 0 - LOG_DEBUG("Read result: %"PRIx32, data); -#endif + LOG_DEBUG_IO("Read result: %"PRIx32, data); if (pending_transfers[i].buffer) *(uint32_t *)pending_transfers[i].buffer = data; -- ------------------------------------------------------------------------------ Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
