Increased memory allocator pool to 8K

This commit is contained in:
Alexandre Paillier
2022-09-01 10:18:41 +02:00
parent 5ce56bd53e
commit edac57df06

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;