blob: 92ca532b24069a211e6faf4e86904e25f63e9ffb [file] [log] [blame]
namespace frc971.autonomous;
// Published on ".frc971.autonomous.auto_mode"
table AutonomousMode {
// Mode read from the mode setting sensors.
mode:int;
}
table AutonomousActionParams {
// The mode from the sensors when auto starts.
mode:int;
}
table Goal {
run:uint;
params:AutonomousActionParams;
}