Project

General

Profile

Statistics
| Revision:

root / demos / smart_run_around_fsm / src / main.c @ 1784

History | View | Annotate | Download (249 Bytes)

1 733 cmar
#include <dragonfly_lib.h>
2 1103 deffi
#include "smart_run_around_fsm.h"
3 733 cmar
4
int main(void) {
5 1103 deffi
        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 733 cmar
}