diff options
author | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-02-07 20:20:11 +0000 |
---|---|---|
committer | ntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-02-07 20:20:11 +0000 |
commit | da2bbc90fc8b1a44fe466e6f168882b65381df3e (patch) | |
tree | 6554662c2b705abe8004cc9225c0997cc674352a /src/target/target.h | |
parent | dafa5aacbe96629a57d63795ab9acdd618f45306 (diff) | |
download | riscv-openocd-da2bbc90fc8b1a44fe466e6f168882b65381df3e.zip riscv-openocd-da2bbc90fc8b1a44fe466e6f168882b65381df3e.tar.gz riscv-openocd-da2bbc90fc8b1a44fe466e6f168882b65381df3e.tar.bz2 |
- added synchronous reset patch, Thanks Øyvind Harboe
- added target_init_reset which calls target_process_reset after all drivers have been initialised
git-svn-id: svn://svn.berlios.de/openocd/trunk@284 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/target.h')
-rw-r--r-- | src/target/target.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/target/target.h b/src/target/target.h index 46aaa7a..46ae505 100644 --- a/src/target/target.h +++ b/src/target/target.h @@ -205,6 +205,7 @@ typedef struct target_timer_callback_s extern int target_register_commands(struct command_context_s *cmd_ctx); extern int target_register_user_commands(struct command_context_s *cmd_ctx); extern int target_init(struct command_context_s *cmd_ctx); +extern int target_init_reset(struct command_context_s *cmd_ctx); extern int handle_target(void *priv); extern int target_process_reset(struct command_context_s *cmd_ctx); |