Maxwell Henderson | ad31234 | 2023-01-10 12:07:47 -0800 | [diff] [blame^] | 1 | include "frc971/control_loops/control_loops.fbs"; |
2 | include "frc971/control_loops/profiled_subsystem.fbs"; | ||||
3 | |||||
4 | namespace y2023.control_loops.superstructure; | ||||
5 | |||||
6 | |||||
7 | table 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 | |||||
15 | root_type Status; |