aboutsummaryrefslogtreecommitdiff
path: root/src/target/target_request.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/target/target_request.c')
-rw-r--r--src/target/target_request.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/target/target_request.c b/src/target/target_request.c
index ec3d48e2..3cdca5e1 100644
--- a/src/target/target_request.c
+++ b/src/target/target_request.c
@@ -36,6 +36,15 @@
#include "trace.h"
+static bool got_message = false;
+
+bool target_got_message(void)
+{
+ bool t = got_message;
+ got_message = false;
+ return t;
+}
+
static int charmsg_mode = 0;
static int target_asciimsg(struct target *target, uint32_t length)
@@ -118,6 +127,9 @@ int target_request(struct target *target, uint32_t request)
{
target_req_cmd_t target_req_cmd = request & 0xff;
+ /* Record that we got a target message for back-off algorithm */
+ got_message = true;
+
if (charmsg_mode) {
target_charmsg(target, target_req_cmd);
return ERROR_OK;