Add 100Hz timer
[fw/altos] / ao_test.c
index 553e5f6d7f9c93791af414152b7cbc85c000981f..35a019fa025ee2c79bba84fef495e26ee37e39ce 100644 (file)
--- a/ao_test.c
+++ b/ao_test.c
@@ -3,8 +3,7 @@
  *
  * 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; either version 2 of the License, or
- * (at your option) any later version.
+ * the Free Software Foundation; version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -46,7 +45,7 @@ blink_1(void)
 {
        for (;;) {
                P1 ^= 2;
-               delay(20);
+               ao_delay(20);
        }
 }
 
@@ -54,7 +53,7 @@ void
 wakeup(void)
 {
        for (;;) {
-               delay(10);
+               ao_delay(10);
                ao_wakeup(&blink_chan);
        }
 }
@@ -63,6 +62,9 @@ void
 main(void)
 {
        CLKCON = 0;
+       while (!(SLEEP & SLEEP_XOSC_STB))
+               ;
+
        /* Set p1_1 and p1_0 to output */
        P1DIR = 0x03;