James Kuszmaul | 04a343c | 2023-02-20 16:38:22 -0800 | [diff] [blame] | 1 | include "frc971/control_loops/drivetrain/drivetrain_status.fbs"; |
| 2 | include "frc971/imu_reader/imu_failures.fbs"; |
| 3 | |
| 4 | namespace y2023.localizer; |
| 5 | |
| 6 | enum RejectionReason : uint8 { |
| 7 | // For some reason, the image timestamp indicates that the image was taken |
| 8 | // in the future. |
| 9 | IMAGE_FROM_FUTURE = 0, |
| 10 | // The image was too old for the buffer of old state estimates that we |
| 11 | // maintain. |
| 12 | IMAGE_TOO_OLD = 1, |
| 13 | // Message bridge is not yet connected, and so we can't get accurate |
| 14 | // time offsets betwee nnodes. |
| 15 | MESSAGE_BRIDGE_DISCONNECTED = 2, |
| 16 | // The target ID does not exist. |
| 17 | NO_SUCH_TARGET = 3, |
milind-u | 7a7f666 | 2023-02-26 16:41:29 -0800 | [diff] [blame^] | 18 | // Pose estimation error was higher than any normal detection. |
| 19 | HIGH_POSE_ERROR = 4, |
James Kuszmaul | 04a343c | 2023-02-20 16:38:22 -0800 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | table RejectionCount { |
| 23 | error:RejectionReason (id: 0); |
| 24 | count:uint (id: 1); |
| 25 | } |
| 26 | |
| 27 | table CumulativeStatistics { |
| 28 | total_accepted:int (id: 0); |
| 29 | total_candidates:int (id: 1); |
| 30 | rejection_reasons:[RejectionCount] (id: 2); |
| 31 | } |
| 32 | |
| 33 | table ImuStatus { |
| 34 | // Whether the IMU is zeroed or not. |
| 35 | zeroed:bool (id: 0); |
| 36 | // Whether the IMU zeroing is faulted or not. |
| 37 | faulted_zero:bool (id: 1); |
| 38 | zeroing:frc971.control_loops.drivetrain.ImuZeroerState (id: 2); |
| 39 | // Offset between the pico clock and the pi clock, such that |
| 40 | // pico_timestamp + pico_offset_ns = pi_timestamp |
| 41 | pico_offset_ns:int64 (id: 3); |
| 42 | // Error in the offset, if we assume that the pi/pico clocks are identical and |
| 43 | // that there is a perfectly consistent latency between the two. Will be zero |
| 44 | // for the very first cycle, and then referenced off of the initial offset |
| 45 | // thereafter. If greater than zero, implies that the pico is "behind", |
| 46 | // whether due to unusually large latency or due to clock drift. |
| 47 | pico_offset_error_ns:int64 (id: 4); |
| 48 | left_encoder:double (id: 5); |
| 49 | right_encoder:double (id: 6); |
| 50 | imu_failures:frc971.controls.ImuFailures (id: 7); |
| 51 | } |
| 52 | |
| 53 | table Status { |
| 54 | state: frc971.control_loops.drivetrain.LocalizerState (id: 0); |
| 55 | down_estimator:frc971.control_loops.drivetrain.DownEstimatorState (id: 1); |
| 56 | imu:ImuStatus (id: 2); |
| 57 | // Statistics are per-camera, by camera index. |
| 58 | statistics:[CumulativeStatistics] (id: 3); |
| 59 | } |
| 60 | |
| 61 | root_type Status; |