diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-06 21:47:31 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | 9e58eeb68a293ae94e0672a31a2116fc52c9dd1e (patch) | |
tree | e97af0e19477faa9e6e825dea362b1b62be7ee55 | |
parent | b97b9f8199d1f65d2304b035c4f99b5a1c76f61b (diff) |
altos/lambdakey-v1.0: Tweak memory allocations
With non-recursive GC, more memory is available for the heap
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/lambdakey-v1.0/ao_pins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lambdakey-v1.0/ao_pins.h b/src/lambdakey-v1.0/ao_pins.h index 4da638b9..5a840f13 100644 --- a/src/lambdakey-v1.0/ao_pins.h +++ b/src/lambdakey-v1.0/ao_pins.h @@ -25,8 +25,8 @@ #define AO_LED_RED (1 << LED_PIN_RED) #define AO_LED_PANIC AO_LED_RED #define AO_CMD_LEN 128 -#define AO_LISP_POOL 1536 -#define AO_STACK_SIZE 2048 +#define AO_LISP_POOL 2560 +#define AO_STACK_SIZE 1024 #define LEDS_AVAILABLE (AO_LED_RED) |