blob: 5f8cdc3a2e9aa94f8e544c3074f18da29d816671 [file] [log] [blame]
milind-u086d7262022-01-19 20:44:18 -08001include "frc971/control_loops/control_loops.fbs";
2include "frc971/control_loops/profiled_subsystem.fbs";
3
4namespace y2022.control_loops.superstructure;
5
6table Status {
7 // All subsystems know their location.
8 zeroed:bool (id: 0);
9
10 // If true, we have aborted. This is the or of all subsystem estops.
11 estopped:bool (id: 1);
Griffin Bui67abb912022-01-22 16:16:21 -080012
13 // Goal voltage of the climber falcon
14 // - is down + is up
15 climber_speed:double (id: 2);
milind-u086d7262022-01-19 20:44:18 -080016}
17
18root_type Status;