mirror of
https://github.com/linux-msm/openocd.git
synced 2026-02-25 13:15:07 -08:00
step command now propagates error
git-svn-id: svn://svn.berlios.de/openocd/trunk@1123 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
@@ -1740,10 +1740,10 @@ int handle_step_command(struct command_context_s *cmd_ctx, char *cmd, char **arg
|
||||
LOG_DEBUG("-");
|
||||
|
||||
if (argc == 0)
|
||||
target->type->step(target, 1, 0, 1); /* current pc, addr = 0, handle breakpoints */
|
||||
return target->type->step(target, 1, 0, 1); /* current pc, addr = 0, handle breakpoints */
|
||||
|
||||
if (argc == 1)
|
||||
target->type->step(target, 0, strtoul(args[0], NULL, 0), 1); /* addr = args[0], handle breakpoints */
|
||||
return target->type->step(target, 0, strtoul(args[0], NULL, 0), 1); /* addr = args[0], handle breakpoints */
|
||||
|
||||
return ERROR_OK;
|
||||
}
|
||||
@@ -3887,7 +3887,7 @@ jim_target( Jim_Interp *interp, int argc, Jim_Obj *const *argv )
|
||||
* It appears that there are 2 old syntaxes:
|
||||
*
|
||||
* target <typename> <endian> <chain position> <variant>
|
||||
*
|
||||
*
|
||||
* and
|
||||
*
|
||||
* target <typename> <endian> <reset mode> <chain position> <variant>
|
||||
|
||||
Reference in New Issue
Block a user