altos: Rename telemega-v0.3 to telemega-v1.0
[fw/altos] / src / product / ao_telemini.c
index fa23de018c2d5b67abfbda2a57ddf120d809fc60..a0d8e18af08c4baf34d71ac98710b4f09bdd403d 100644 (file)
@@ -18,6 +18,8 @@
 #include "ao.h"
 #include "ao_pins.h"
 
+__xdata uint8_t ao_force_freq;
+
 void
 main(void)
 {
@@ -33,6 +35,19 @@ main(void)
        ao_led_init(LEDS_AVAILABLE);
        ao_led_on(AO_LED_RED);
 
+       /* A hack -- look at the debug clock pin, if it's sitting at
+        *  ground, then we force the computer to idle mode instead of
+        *  flight mode
+        */
+       if (P2_2 == 0) {
+               ao_flight_force_idle = 1;
+               ao_force_freq = 1;
+               while (P2_2 == 0)
+                       ;
+       }
+
+       ao_task_init();
+
        ao_timer_init();
        ao_adc_init();
        ao_cmd_init();