Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
[fw/altos] / src / telelco-v0.2 / ao_telelco.c
index 66bf0ba18e6ee7d7007b36baefd08e2a73974a10..4eba3597950879078ae5969ad1079fe675fc7748 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
 #include <ao_lco.h>
 #include <ao_lco_cmd.h>
 #include <ao_radio_cmac_cmd.h>
+#include <ao_eeprom.h>
 
 int
 main(void)
 {
        ao_clock_init();
-       
-       ao_led_init(LEDS_AVAILABLE);
-       ao_led_on(AO_LED_GREEN);
+
+       ao_led_init();
+       ao_led_on(LEDS_AVAILABLE);
        ao_task_init();
 
        ao_timer_init();
@@ -52,18 +54,20 @@ main(void)
        ao_quadrature_init();
        ao_button_init();
 
-       ao_storage_init();
-       
+       ao_eeprom_init();
+
        ao_radio_init();
 
        ao_usb_init();
 
        ao_config_init();
-       
+
        ao_lco_init();
        ao_lco_cmd_init();
 //     ao_radio_cmac_cmd_init();
-       
+
+       ao_led_off(LEDS_AVAILABLE);
+
        ao_start_scheduler();
        return 0;
 }