Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / slam.bak2 / robot / robot_main.c @ 721

History | View | Annotate | Download (274 Bytes)

1
#include "dragonfly_lib.h"
2
#include "data_response.h"
3
#include "smart_run_around_fsm.h"
4

    
5
int main(void){
6
  wl_init(); 
7
  data_response_init();
8
  wl_token_ring_register();
9
  wl_token_ring_join();
10
  run_around_init();
11
  while(1){
12
    run_around_FSM();
13
  }
14
  wl_terminate();
15
}