altos: TM v2 places the MMA6555 upside down compared to Tmega
[fw/altos] / src / cc1111 / ao_timer.c
index aadee71e239e324a8b7644fe70872148e615f5d9..a64b5aba90a0fb5e104a3005dbf2cdda464056ad 100644 (file)
 
 #include "ao.h"
 
-static volatile __data uint16_t ao_tick_count;
+volatile __data uint16_t ao_tick_count;
 
 uint16_t ao_time(void) __critical
 {
        return ao_tick_count;
 }
 
-static __xdata uint8_t ao_forever;
-
-void
-ao_delay(uint16_t ticks)
-{
-       ao_alarm(ticks);
-       ao_sleep(&ao_forever);
-       ao_clear_alarm();
-}
-
 #define T1_CLOCK_DIVISOR       8       /* 24e6/8 = 3e6 */
 #define T1_SAMPLE_TIME         30000   /* 3e6/30000 = 100 */