Increased memory allocator pool to 8K

This commit is contained in:
Alexandre Paillier
2022-09-14 17:27:33 +02:00
parent 5ce56bd53e
commit edac57df06
+1 -1
View File
@@ -3,7 +3,7 @@
#include <stdint.h>
#include "mem.h"
#define SIZE_MEM_BUFFER 5120
#define SIZE_MEM_BUFFER 8192
static uint8_t mem_buffer[SIZE_MEM_BUFFER];
static size_t mem_idx;