altos/lambdakey-v1.0: Tweak memory allocations
authorKeith Packard <keithp@keithp.com>
Mon, 7 Nov 2016 05:47:31 +0000 (21:47 -0800)
committerKeith Packard <keithp@keithp.com>
Mon, 20 Feb 2017 19:16:50 +0000 (11:16 -0800)
With non-recursive GC, more memory is available for the heap

Signed-off-by: Keith Packard <keithp@keithp.com>
src/lambdakey-v1.0/ao_pins.h

index 4da638b9f0222dc489b81286286eda1f36673f56..5a840f13312041ed66f0a32cfc2fb60bc9b51acd 100644 (file)
@@ -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)