From 1374c47afd6e2a0759c980d414d4389e30f34dad Mon Sep 17 00:00:00 2001 From: John Chadwick Date: Wed, 28 Sep 2022 04:12:19 -0400 Subject: [PATCH] Increase command data size to 1024. (Fixes #54) --- brain/src/spiralcore/command_ring_buffer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brain/src/spiralcore/command_ring_buffer.h b/brain/src/spiralcore/command_ring_buffer.h index 2df8608..f7e3797 100644 --- a/brain/src/spiralcore/command_ring_buffer.h +++ b/brain/src/spiralcore/command_ring_buffer.h @@ -19,7 +19,7 @@ #ifndef COMMAND_RING_BUFFER #define COMMAND_RING_BUFFER -static const unsigned int COMMAND_DATA_SIZE = 128; +static const unsigned int COMMAND_DATA_SIZE = 1024; class command_ring_buffer : public ring_buffer {