blob: ef9667dbd4c1faae29d9420887d6fa7351e419bc [file] [log] [blame]
Maxwell Hendersonad312342023-01-10 12:07:47 -08001include "frc971/control_loops/control_loops.fbs";
2include "frc971/control_loops/profiled_subsystem.fbs";
3
4namespace y2023.control_loops.superstructure;
5
6
7table Status {
8 // All subsystems know their location.
9 zeroed:bool (id: 0);
10
11 // If true, we have aborted. This is the or of all subsystem estops.
12 estopped:bool (id: 1);
13}
14
15root_type Status;