diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2007-07-26 12:28:22 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2007-07-26 12:28:22 +0000 |
commit | eba4e394d834c5088f95412a6d3bdba622a691fc (patch) | |
tree | 6e3797a8747abf13746cd8c0ded5a683ce4d1835 /src/flash | |
parent | 712be40f8df23e5d4688728b5b73dd36236ca850 (diff) | |
download | openocd+libswd-eba4e394d834c5088f95412a6d3bdba622a691fc.tar.gz openocd+libswd-eba4e394d834c5088f95412a6d3bdba622a691fc.tar.bz2 openocd+libswd-eba4e394d834c5088f95412a6d3bdba622a691fc.tar.xz openocd+libswd-eba4e394d834c5088f95412a6d3bdba622a691fc.zip |
- 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
Diffstat (limited to 'src/flash')
-rw-r--r-- | src/flash/stm32x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/stm32x.c b/src/flash/stm32x.c index bb41f732..a09fa40d 100644 --- a/src/flash/stm32x.c +++ b/src/flash/stm32x.c @@ -736,7 +736,7 @@ int stm32x_handle_options_write_command(struct command_context_s *cmd_ctx, char if (argc < 4) { - command_print(cmd_ctx, "stm32x options_write <bank> <RSTSTNDBY|NORSTSTNDBY> <RSTSTOP|NORSTSTOP> <SWWDG|HWWDG>"); + command_print(cmd_ctx, "stm32x options_write <bank> <SWWDG|HWWDG> <RSTSTNDBY|NORSTSTNDBY> <RSTSTOP|NORSTSTOP>"); return ERROR_OK; } |