diff options
author | Keith Packard <keithp@keithp.com> | 2011-10-11 18:44:48 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-10-11 18:57:32 -0600 |
commit | f1573a752425121d4c6a14285f1eb0fef3a8bea5 (patch) | |
tree | ff0551fbb6c8212fb16d7b64fbb92c14ca652019 /src/avr | |
parent | cb837d9bb9e6736fcdfca7692b1f9490ea090838 (diff) |
altos/avr: Shrink default stack size to use less ram
Not that we have any way of knowing how much stack we're using, but at
least this seems to work.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/avr')
-rw-r--r-- | src/avr/ao_arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/avr/ao_arch.h b/src/avr/ao_arch.h index 2be4abee..c189ccba 100644 --- a/src/avr/ao_arch.h +++ b/src/avr/ao_arch.h @@ -37,7 +37,7 @@ * AVR definitions and code fragments for AltOS */ -#define AO_STACK_SIZE 128 +#define AO_STACK_SIZE 116 /* Various definitions to make GCC look more like SDCC */ |