aboutsummaryrefslogtreecommitdiffstats
path: root/src/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/command.c')
-rw-r--r--src/command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/command.c b/src/command.c
index 915bbd42..44de070d 100644
--- a/src/command.c
+++ b/src/command.c
@@ -7,6 +7,7 @@
#include <stdarg.h> // va_start
#include <string.h> // memcpy
#include "board/io.h" // readb
+#include "board/irq.h" // irq_poll
#include "board/misc.h" // crc16_ccitt
#include "board/pgm.h" // READP
#include "command.h" // output_P
@@ -306,6 +307,7 @@ command_task(void)
p = parsef(p, msgend, cp, args);
if (!p)
break;
+ irq_poll();
void (*func)(uint32_t*) = READP(cp->func);
func(args);
}