- the reset mode parameter is now DEPRECATED. It is implemented
as an optional parameter with default reset_init. This is to streamline things w.r.t. the target library. git-svn-id: svn://svn.berlios.de/openocd/trunk@540 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
35b3c95299
commit
381dc0efab
|
@ -784,7 +784,7 @@ int target_free_all_working_areas(struct target_s *target)
|
||||||
|
|
||||||
int target_register_commands(struct command_context_s *cmd_ctx)
|
int target_register_commands(struct command_context_s *cmd_ctx)
|
||||||
{
|
{
|
||||||
register_command(cmd_ctx, NULL, "target", handle_target_command, COMMAND_CONFIG, NULL);
|
register_command(cmd_ctx, NULL, "target", handle_target_command, COMMAND_CONFIG, "target <cpu> [reset_init default - DEPRECATED] <chainpos> <endianness> <variant> [cpu type specifc args]");
|
||||||
register_command(cmd_ctx, NULL, "targets", handle_targets_command, COMMAND_EXEC, NULL);
|
register_command(cmd_ctx, NULL, "targets", handle_targets_command, COMMAND_EXEC, NULL);
|
||||||
register_command(cmd_ctx, NULL, "daemon_startup", handle_daemon_startup_command, COMMAND_CONFIG, NULL);
|
register_command(cmd_ctx, NULL, "daemon_startup", handle_daemon_startup_command, COMMAND_CONFIG, NULL);
|
||||||
register_command(cmd_ctx, NULL, "target_script", handle_target_script_command, COMMAND_CONFIG, NULL);
|
register_command(cmd_ctx, NULL, "target_script", handle_target_script_command, COMMAND_CONFIG, NULL);
|
||||||
|
@ -1191,6 +1191,7 @@ int handle_target_command(struct command_context_s *cmd_ctx, char *cmd, char **a
|
||||||
}
|
}
|
||||||
|
|
||||||
/* what to do on a target reset */
|
/* what to do on a target reset */
|
||||||
|
(*last_target_p)->reset_mode = RESET_INIT; /* default */
|
||||||
if (strcmp(args[2], "reset_halt") == 0)
|
if (strcmp(args[2], "reset_halt") == 0)
|
||||||
(*last_target_p)->reset_mode = RESET_HALT;
|
(*last_target_p)->reset_mode = RESET_HALT;
|
||||||
else if (strcmp(args[2], "reset_run") == 0)
|
else if (strcmp(args[2], "reset_run") == 0)
|
||||||
|
@ -1203,8 +1204,9 @@ int handle_target_command(struct command_context_s *cmd_ctx, char *cmd, char **a
|
||||||
(*last_target_p)->reset_mode = RESET_RUN_AND_INIT;
|
(*last_target_p)->reset_mode = RESET_RUN_AND_INIT;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
LOG_ERROR("unknown target startup mode %s", args[2]);
|
/* Kludge! we want to make this reset arg optional while remaining compatible! */
|
||||||
return ERROR_COMMAND_SYNTAX_ERROR;
|
args--;
|
||||||
|
argc++;
|
||||||
}
|
}
|
||||||
(*last_target_p)->run_and_halt_time = 1000; /* default 1s */
|
(*last_target_p)->run_and_halt_time = 1000; /* default 1s */
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ reset_config srst_only srst_pulls_trst
|
||||||
jtag_device 4 0x1 0xf 0xe
|
jtag_device 4 0x1 0xf 0xe
|
||||||
|
|
||||||
#target configuration
|
#target configuration
|
||||||
target arm7tdmi little reset_init 0 arm7tdmi-s_r4
|
target arm7tdmi little 0 arm7tdmi-s_r4
|
||||||
|
|
||||||
# speed up memory downloads
|
# speed up memory downloads
|
||||||
arm7 fast_memory_access enable
|
arm7 fast_memory_access enable
|
||||||
|
|
Loading…
Reference in New Issue