When logging starts up, right the whole ring to the log.
[fw/altos] / ao_telemetrum.c
index 1f7a829fc929480ed1b12e6f37d5cfbf061ae11a..a680ce19675180b0377887b33e0609d82169f5d8 100644 (file)
@@ -25,7 +25,7 @@ main(void)
                ;
 
        /* Turn on the red LED until the system is stable */
-       ao_led_init();
+       ao_led_init(AO_LED_RED|AO_LED_GREEN);
        ao_led_on(AO_LED_RED);
 
        ao_timer_init();
@@ -39,7 +39,11 @@ main(void)
        ao_usb_init();
        ao_serial_init();
        ao_gps_init();
+       ao_gps_report_init();
        ao_telemetry_init();
        ao_radio_init();
+       ao_igniter_init();
+       ao_dbg_init();
+       ao_config_init();
        ao_start_scheduler();
 }