blob: f231f17a15ec657c6919fd1046b0c5007d018174 [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;
Sabina Davis6b61de32020-02-02 12:42:51 -080015 intake:frc971.control_loops.AbsoluteEncoderProfiledJointStatus;
Tyler Chatow1879acc2020-02-01 13:26:48 -080016 turret:frc971.control_loops.PotAndAbsoluteEncoderProfiledJointStatus;
Stephan Massaltd021f972020-01-05 20:41:23 -080017}
18
19root_type Status;