first cut at turnon scripts for EasyTimer v2
[fw/altos] / src / kernel / ao_report_micro.c
index af68457de05f71863cce9341a4247e513e0e3f15..7abd2311bc4bdcd827ebc3ab332cdfa03cb05eab 100644 (file)
  */
 
 #include <ao.h>
+#include <ao_report_micro.h>
 
 #define mid(time)      ao_led_for(AO_LED_REPORT, time)
 #define pause(time)    ao_delay(time)
 
 static void
-ao_report_digit(uint8_t digit) __reentrant
+ao_report_digit(uint8_t digit) 
 {
        if (!digit) {
                mid(AO_MS_TO_TICKS(1000));
@@ -39,15 +40,15 @@ ao_report_digit(uint8_t digit) __reentrant
 void
 ao_report_altitude(void)
 {
-       __pdata alt_t   agl = ao_max_height;
-       static __xdata uint8_t  digits[11];
-       __pdata uint8_t ndigits, i;
+       alt_t   agl = ao_max_height;
+       static uint8_t  digits[11];
+       uint8_t ndigits, i;
 
        if (agl < 0)
                agl = 0;
        ndigits = 0;
        do {
-               digits[ndigits++] = agl % 10;
+               digits[ndigits++] = (uint8_t) agl % 10;
                agl /= 10;
        } while (agl);