blob: ad3d360742e9223a4c820c82adefd1bbe300108c [file] [log] [blame]
Niko Sohmers4a5bef82023-12-30 15:16:16 -08001namespace frc971.control_loops;
2
3// EncoderFaultStatus table contains boolean for when subsystem is faulted
4
5// TODO (niko): Add a boolean representing whether new date is "stale"
6// meaning that it is currently being ignored due to it
7// coming in slower than the 10 millisecond timeframe
8
9table EncoderFaultStatus {
10 faulted:bool (id : 0);
11}