Increase buffer size for non-pico.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2026-02-25 19:33:28 +01:00
parent 6b483029a5
commit 1be3691a95
5 changed files with 20 additions and 5 deletions

View File

@@ -58,7 +58,11 @@
#endif
#include "queue.h"
#endif
#define FLASH_SECTOR_SIZE 4096
#ifdef ENABLE_EMULATION
#define FLASH_SECTOR_SIZE 0x4000
#else
#define FLASH_SECTOR_SIZE 0x1000
#endif
#define XIP_BASE 0
int fd_map = 0;
uint8_t *map = NULL;