milind-u | 086d726 | 2022-01-19 20:44:18 -0800 | [diff] [blame] | 1 | include "frc971/control_loops/control_loops.fbs"; |
| 2 | include "frc971/control_loops/profiled_subsystem.fbs"; |
| 3 | |
| 4 | namespace y2022.control_loops.superstructure; |
| 5 | |
| 6 | table 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 Bui | 67abb91 | 2022-01-22 16:16:21 -0800 | [diff] [blame] | 12 | |
| 13 | // Goal voltage of the climber falcon |
| 14 | // - is down + is up |
| 15 | climber_speed:double (id: 2); |
milind-u | 086d726 | 2022-01-19 20:44:18 -0800 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | root_type Status; |