diff options
Diffstat (limited to 'src/target/target_request.h')
-rw-r--r-- | src/target/target_request.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/target/target_request.h b/src/target/target_request.h index e50c425e..740645ed 100644 --- a/src/target/target_request.h +++ b/src/target/target_request.h @@ -47,5 +47,12 @@ int target_request(struct target *target, uint32_t request); int delete_debug_msg_receiver(struct command_context *cmd_ctx, struct target *target); int target_request_register_commands(struct command_context *cmd_ctx); +/** + * Read and clear the flag as to whether we got a message. + * + * This is used to implement the back-off algorithm on + * sleeping in idle mode. + */ +bool target_got_message(void); #endif /* TARGET_REQUEST_H */ |