diff options
author | Keith Packard <keithp@keithp.com> | 2012-06-27 23:09:16 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-06-27 23:09:16 -0700 |
commit | 79dbe1a5e46d7f0b8929400897631ab969cd2bc0 (patch) | |
tree | 6466875a7c21a46626f9a6b5fed422402d0120ea | |
parent | aab7b31b71aa7c87c5a5003084e4b7773c30835f (diff) |
altos: Increase default STM stack to 648 bytes
512 seems cozy given the printf implementation we're using and the
extensive interrupts.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/stm/ao_arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stm/ao_arch.h b/src/stm/ao_arch.h index 30cd9ea5..baae1902 100644 --- a/src/stm/ao_arch.h +++ b/src/stm/ao_arch.h @@ -25,7 +25,7 @@ * STM32L definitions and code fragments for AltOS */ -#define AO_STACK_SIZE 512 +#define AO_STACK_SIZE 700 #define AO_LED_TYPE uint16_t |