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