blob: 8c29e23f2379200706a153e17ffbc8156e2152af [file] [log] [blame]
Stephan Massaltd021f972020-01-05 20:41:23 -08001include "frc971/control_loops/control_loops.fbs";
2include "frc971/control_loops/profiled_subsystem.fbs";
3
4namespace y2020.control_loops.superstructure;
5
6table Status {
7 // All subsystems know their location.
8 zeroed:bool;
9
10 // If true, we have aborted. This is the or of all subsystem estops.
11 estopped:bool;
12
Sabina Davis70d5e912020-01-31 21:10:37 -080013 //Subsystem status.
14 hood:frc971.control_loops.AbsoluteEncoderProfiledJointStatus;
Stephan Massaltd021f972020-01-05 20:41:23 -080015}
16
17root_type Status;