summaryrefslogtreecommitdiff
path: root/src/lambdakey-v1.0/ao_lambdakey.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2017-12-12 15:27:26 -0800
committerKeith Packard <keithp@keithp.com>2017-12-12 15:27:26 -0800
commit09ea349f5b37e257e8ca23ead493ba1694395530 (patch)
treeeca7e5f06fa5091ce6cf8cc7a3c06066aa8cc9eb /src/lambdakey-v1.0/ao_lambdakey.c
parentd8c9024f3829dc3f241b16869f165f3ee01764f3 (diff)
altos/lambdakey-v1.0: Get this building again
The lambdakey can't hold a full implementation of the scheme interpreter, so use only a subset, removing floats, bigints and vectors. Also reduce the pre-loaded lisp code as well. It's pretty spare at this point; but it does fill the ROM. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/lambdakey-v1.0/ao_lambdakey.c')
-rw-r--r--src/lambdakey-v1.0/ao_lambdakey.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lambdakey-v1.0/ao_lambdakey.c b/src/lambdakey-v1.0/ao_lambdakey.c
index d0996eb4..73962e29 100644
--- a/src/lambdakey-v1.0/ao_lambdakey.c
+++ b/src/lambdakey-v1.0/ao_lambdakey.c
@@ -29,13 +29,11 @@ void main(void)
{
ao_led_init(LEDS_AVAILABLE);
ao_clock_init();
- ao_task_init();
ao_timer_init();
- ao_dma_init();
ao_usb_init();
ao_cmd_init();
ao_cmd_register(blink_cmds);
- ao_start_scheduler();
+ ao_cmd();
}