blob: 32baa05f2ac79d52da9ee1d325d07627142ebac7 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001package aos;
2
3message RobotState {
4 bool enabled;
5 bool autonomous;
6 uint16_t team_id;
7};
8
9// The robot_state Queue is checked by all control loops to make sure that the
10// joystick code hasn't died.
11// It also provides information about whether or not the robot is in autonomous
12// mode and what the team_id is.
13
14queue RobotState robot_state;