summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-11-06 21:47:31 -0800
committerKeith Packard <keithp@keithp.com>2017-02-20 11:16:50 -0800
commitcb4cdb115ad83ae0d75eb58e68f561d20279f027 (patch)
treee08f9c62320121e345f6e4547fb5f6396421e527
parent6e5c1308ce33a864095eae02e7db18b0e043ab6e (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.h4
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)