summaryrefslogtreecommitdiff
path: root/src/nucleao-32
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-11-03 21:49:50 -0700
committerKeith Packard <keithp@keithp.com>2017-02-20 11:16:49 -0800
commit77db0e8162cd01c2b42737b3d71b38cea942484f (patch)
tree6345771cd69cdc646fd38f02e84056e0a8ff21d9 /src/nucleao-32
parent11cb03b1d336ee90c422be27588f57be573a9546 (diff)
altos: Add lambda support to lisp
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/nucleao-32')
-rw-r--r--src/nucleao-32/Makefile1
-rw-r--r--src/nucleao-32/ao_pins.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/nucleao-32/Makefile b/src/nucleao-32/Makefile
index 1b7e0bb0..388e581c 100644
--- a/src/nucleao-32/Makefile
+++ b/src/nucleao-32/Makefile
@@ -46,6 +46,7 @@ ALTOS_SRC = \
ao_lisp_read.c \
ao_lisp_rep.c \
ao_lisp_frame.c \
+ ao_lisp_error.c \
ao_exti_stm.c
PRODUCT=Nucleo-32
diff --git a/src/nucleao-32/ao_pins.h b/src/nucleao-32/ao_pins.h
index 76200176..65de89ed 100644
--- a/src/nucleao-32/ao_pins.h
+++ b/src/nucleao-32/ao_pins.h
@@ -24,6 +24,8 @@
#define LED_PIN_GREEN 3
#define AO_LED_GREEN (1 << LED_PIN_GREEN)
#define AO_LED_PANIC AO_LED_GREEN
+#define AO_CMD_LEN 128
+#define AO_LISP_POOL 2048
#define LEDS_AVAILABLE (AO_LED_GREEN)