Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / smart_run_around / main.c @ 1130

History | View | Annotate | Download (271 Bytes)

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

    
4
int main(void)
5
{
6
        dragonfly_init(ALL_ON);
7
        //bom_leds_on(BOM_ALL);
8
        //motor1_set(1, 210);
9
        //motor2_set(1, 200);
10
        run_around_init();
11
        while(1){
12
                run_around_FSM();
13
                       simulator_do();
14
          }
15
        return 0;
16
}
17

    
18