Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / mapping / new_run_around / main.c @ 1199

History | View | Annotate | Download (204 Bytes)

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

    
4
int main(void) {
5
    dragonfly_init(ALL_ON);
6
    orb_init();
7
    run_around_init();
8

    
9
    while (1)
10
        run_around_FSM();
11

    
12
    return 0;
13
}