From fbb07cf50ba7fa278d1f8201ef376ec12480e9aa Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Tue, 19 Jan 2016 23:55:52 -0800 Subject: [PATCH] altos/stmf0: Allow projects to specify non-default stack size 512 may not be suitable for everyone. Signed-off-by: Keith Packard --- src/stmf0/ao_arch.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/stmf0/ao_arch.h b/src/stmf0/ao_arch.h index 6ee71ef9..45df0982 100644 --- a/src/stmf0/ao_arch.h +++ b/src/stmf0/ao_arch.h @@ -25,7 +25,9 @@ * STM32F0 definitions and code fragments for AltOS */ +#ifndef AO_STACK_SIZE #define AO_STACK_SIZE 512 +#endif #define AO_LED_TYPE uint16_t -- 2.30.2