From 41d5eb4aa3e3d9da907d72cb8780444ee9b279d0 Mon Sep 17 00:00:00 2001 From: Xoaquin Castrelo <xoaquin.cb@gmail.com> Date: Sat, 13 Nov 2021 21:32:02 +0000 Subject: [PATCH] Increased command buffer size. --- emb/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emb/command.c b/emb/command.c index edf0d31..27bfbad 100644 --- a/emb/command.c +++ b/emb/command.c @@ -2,7 +2,7 @@ #include <stdlib.h> #include "command.h" -#define NUM_COMMANDS 20 +#define NUM_COMMANDS 200 /* Cyclic buffer; when comm_start == comm_end, length = 0 */ struct command command_buf[NUM_COMMANDS]; -- GitLab