forked from auracaster/openocd
- corrected stm32x_handle_options_write_command, incorrect options printed
- added prepare_reset_halt handler for cortex_m3 git-svn-id: svn://svn.berlios.de/openocd/trunk@184 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -439,7 +439,7 @@ int ahbap_write_buf(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address)
|
||||
}
|
||||
if (errorcount > 1)
|
||||
{
|
||||
WARNING("Block read error address %x, count %x", address, count);
|
||||
WARNING("Block read error address 0x%x, count 0x%x", address, count);
|
||||
return ERROR_JTAG_DEVICE_ERROR;
|
||||
}
|
||||
}
|
||||
@@ -531,7 +531,7 @@ int ahbap_read_buf(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address)
|
||||
}
|
||||
if (errorcount > 1)
|
||||
{
|
||||
WARNING("Block read error address %x, count %x", address, count);
|
||||
WARNING("Block read error address 0x%x, count 0x%x", address, count);
|
||||
return ERROR_JTAG_DEVICE_ERROR;
|
||||
}
|
||||
}
|
||||
@@ -600,7 +600,7 @@ int ahbap_block_read_u32(swjdp_common_t *swjdp, u32 *buffer, int count, u32 addr
|
||||
}
|
||||
if (errorcount > 1)
|
||||
{
|
||||
WARNING("Block read error address %x, count %x", address, count);
|
||||
WARNING("Block read error address 0x%x, count 0x%x", address, count);
|
||||
return ERROR_JTAG_DEVICE_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user