Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / template / main.c @ 696

History | View | Annotate | Download (249 Bytes)

1
#include <dragonfly_lib.h>
2
#include "smart_run_around_fsm.h"
3

    
4
int main(void) {
5
        dragonfly_init(ALL_ON);
6
    range_init();
7
        //orb_enable();
8
        usb_puts("Turned on!\n");
9
    run_around_init();
10
    while(1) {
11
        run_around_FSM();
12
    }
13
        return 0;
14
}