more robust error reporting for DCC
git-svn-id: svn://svn.berlios.de/openocd/trunk@1068 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
a3035243dc
commit
09614074b7
|
@ -2282,6 +2282,10 @@ static int arm7_9_dcc_completion(struct target_s *target, u32 exit_point, int ti
|
||||||
int retval = ERROR_OK;
|
int retval = ERROR_OK;
|
||||||
armv4_5_common_t *armv4_5 = target->arch_info;
|
armv4_5_common_t *armv4_5 = target->arch_info;
|
||||||
arm7_9_common_t *arm7_9 = armv4_5->arch_info;
|
arm7_9_common_t *arm7_9 = armv4_5->arch_info;
|
||||||
|
|
||||||
|
if ((retval=target_wait_state(target, TARGET_DEBUG_RUNNING, 500))!=ERROR_OK)
|
||||||
|
return retval;
|
||||||
|
|
||||||
int little=target->endianness==TARGET_LITTLE_ENDIAN;
|
int little=target->endianness==TARGET_LITTLE_ENDIAN;
|
||||||
int count=dcc_count;
|
int count=dcc_count;
|
||||||
u8 *buffer=dcc_buffer;
|
u8 *buffer=dcc_buffer;
|
||||||
|
|
|
@ -612,6 +612,9 @@ int armv4_5_run_algorithm_inner(struct target_s *target, int num_mem_params, mem
|
||||||
|
|
||||||
breakpoint_remove(target, exit_point);
|
breakpoint_remove(target, exit_point);
|
||||||
|
|
||||||
|
if (retval!=ERROR_OK)
|
||||||
|
return retval;
|
||||||
|
|
||||||
for (i = 0; i < num_mem_params; i++)
|
for (i = 0; i < num_mem_params; i++)
|
||||||
{
|
{
|
||||||
if (mem_params[i].direction != PARAM_OUT)
|
if (mem_params[i].direction != PARAM_OUT)
|
||||||
|
|
Loading…
Reference in New Issue