Project

General

Profile

Statistics
| Revision:

root / trunk / code / projects / calibration_platform / robot / cal_sta_robot.h @ 1926

History | View | Annotate | Download (533 Bytes)

1 1926 jsexton
#ifndef _CIRCLE_H
2
#define _CIRCLE_H
3
4
#include <inttypes.h>
5
6
/**** This file should not be edited! ****/
7
8
/*
9
 * The packet structure is 2 bytes (or 3!)
10
 * byte 0 is the action, which is one of the values below
11
 * byte 1 is the robot id
12
 */
13
14
#define CIRCLE_ACTION_EXIST 'E'
15
#define CIRCLE_ACTION_POSITION 'P'
16
#define CIRCLE_ACTION_ACK 'A'
17
#define CIRCLE_ACTION_DONE 'D'
18
#define CIRCLE_ACTION_GOTYOU 'G'
19
#define CIRCLE_ACTION_FORWARD 'F'
20
#define CIRCLE_CLAIM_CENTER 'C'
21
#define CIRCLE_EXECUTE 'X'
22
#define CIRCLE_ACTION_TURN 'T'
23
24
#endif