diff options
author | Keith Packard <keithp@keithp.com> | 2009-04-12 22:52:47 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-04-12 22:52:47 -0700 |
commit | 823f4f92de0c1f8dd7a644a8e56ffe9822bee6e2 (patch) | |
tree | c376e7e76989b77ae63a5f8a9c60ad592b697b10 /ao_test.c | |
parent | 650a77e209dbb54c8d8fd9824cee430985564973 (diff) |
Add 100Hz timer
Use Timer 1 to generate a 100Hz timer interrupt
Diffstat (limited to 'ao_test.c')
-rw-r--r-- | ao_test.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -45,7 +45,7 @@ blink_1(void) { for (;;) { P1 ^= 2; - delay(20); + ao_delay(20); } } @@ -53,7 +53,7 @@ void wakeup(void) { for (;;) { - delay(10); + ao_delay(10); ao_wakeup(&blink_chan); } } @@ -62,6 +62,9 @@ void main(void) { CLKCON = 0; + while (!(SLEEP & SLEEP_XOSC_STB)) + ; + /* Set p1_1 and p1_0 to output */ P1DIR = 0x03; |