Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame^] | 1 | namespace frc971.autonomous; |
2 | |||||
3 | // Published on ".frc971.autonomous.auto_mode" | ||||
4 | table AutonomousMode { | ||||
5 | // Mode read from the mode setting sensors. | ||||
6 | mode:int; | ||||
7 | } | ||||
8 | |||||
9 | table AutonomousActionParams { | ||||
10 | // The mode from the sensors when auto starts. | ||||
11 | mode:int; | ||||
12 | } | ||||
13 | |||||
14 | table Goal { | ||||
15 | run:uint; | ||||
16 | params:AutonomousActionParams; | ||||
17 | } |