blob: 5f8cdc3a2e9aa94f8e544c3074f18da29d816671 [file] [log] [blame]
include "frc971/control_loops/control_loops.fbs";
include "frc971/control_loops/profiled_subsystem.fbs";
namespace y2022.control_loops.superstructure;
table Status {
// All subsystems know their location.
zeroed:bool (id: 0);
// If true, we have aborted. This is the or of all subsystem estops.
estopped:bool (id: 1);
// Goal voltage of the climber falcon
// - is down + is up
climber_speed:double (id: 2);
}
root_type Status;