From 651c66ce117f479158fb0eebd9af6d73f0d9875a Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 2 Jul 2020 15:11:42 -0700 Subject: [PATCH] altos: Reduce flash temp buffer to make space for Em v1.0 ISR stack EasyMini has limited RAM; small enough that increasing the size of the storage buffer from 128 to 256 bytes left too little space at the top of memory for the interrupt stack, causing EasyMini v1.0 to crash at boot. Signed-off-by: Keith Packard --- src/kernel/ao_storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/ao_storage.c b/src/kernel/ao_storage.c index 73b31c64..b649e818 100644 --- a/src/kernel/ao_storage.c +++ b/src/kernel/ao_storage.c @@ -19,7 +19,7 @@ #include #include -#define AO_STORAGE_DATA_SIZE 256 +#define AO_STORAGE_DATA_SIZE 128 static uint8_t storage_data[AO_STORAGE_DATA_SIZE]; -- 2.30.2