altos/lambdakey-v1.0: Get this building again
[fw/altos] / src / lambdakey-v1.0 / ao_lambdakey.c
index 8bd344cf57139fe47f9264e7e2f6cf6514e34e2a..73962e29b36fc3006992ba1b22ab381b2db1e080 100644 (file)
  */
 
 #include <ao.h>
-#include <ao_lisp.h>
+#include <ao_scheme.h>
 
-static void lisp_cmd() {
-       ao_lisp_read_eval_print();
+static void scheme_cmd() {
+       ao_scheme_read_eval_print();
 }
 
 static const struct ao_cmds blink_cmds[] = {
-       { lisp_cmd,     "l\0Run lisp interpreter" },
+       { scheme_cmd,   "l\0Run scheme interpreter" },
        { 0, 0 }
 };
 
@@ -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();
 }