Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / scheduler / scheduler.h @ 1478

History | View | Annotate | Download (277 Bytes)

1 16 bcoltin
#include <dragonfly_lib.h>
2
3 857 bcoltin
int main(void)
4
{
5 1419 jsexton
6 967 alevkoy
        /* initialize components, set wireless channel */
7 857 bcoltin
        dragonfly_init(ALL_ON);
8 1419 jsexton
9
        int val;
10 967 alevkoy
11 1394 cmar
        while (1) {
12 967 alevkoy
13 1419 jsexton
                usb_puts("Val: ");
14
                bom_refresh(BOM_ALL);
15
                usb_puti(bom_get_max());
16
17
                usb_putc('\n');
18
19
                delay_ms(200);
20
21 967 alevkoy
        }
22
23
        return 0;
24 16 bcoltin
}