aboutsummaryrefslogtreecommitdiffstats
path: root/src/pru
diff options
context:
space:
mode:
Diffstat (limited to 'src/pru')
-rw-r--r--src/pru/pru0.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/pru/pru0.c b/src/pru/pru0.c
index 2a136e9e..4b60af27 100644
--- a/src/pru/pru0.c
+++ b/src/pru/pru0.c
@@ -148,8 +148,10 @@ check_can_read(void)
int_fast8_t ret = command_find_block(p, msglen, &pop_count);
if (!ret)
break;
- if (ret > 0)
+ if (ret > 0) {
do_dispatch(p, pop_count);
+ command_send_ack();
+ }
p += pop_count;
len -= pop_count;
}