blob: 0ea779fd8a6ff4654838becd351bb087202be8cf [file] [log] [blame]
James Kuszmaul04a343c2023-02-20 16:38:22 -08001include "frc971/control_loops/drivetrain/drivetrain_status.fbs";
2include "frc971/imu_reader/imu_failures.fbs";
3
4namespace y2023.localizer;
5
6enum 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-u7a7f6662023-02-26 16:41:29 -080018 // Pose estimation error was higher than any normal detection.
19 HIGH_POSE_ERROR = 4,
milind-ub45c6d92023-03-11 18:56:15 -080020 // Pose estimate implied a robot yaw far off from our estimate.
21 HIGH_IMPLIED_YAW_ERROR = 5,
milind-u48601192023-03-11 19:44:46 -080022 // Pose estimate had a high distance to target.
23 // We don't trust estimates very far out.
24 HIGH_DISTANCE_TO_TARGET = 6,
James Kuszmaul3c6a9682023-03-23 20:36:53 -070025 // The robot was travelling too fast; we don't trust the target.
26 ROBOT_TOO_FAST = 7,
James Kuszmaul04a343c2023-02-20 16:38:22 -080027}
28
29table RejectionCount {
30 error:RejectionReason (id: 0);
31 count:uint (id: 1);
32}
33
34table CumulativeStatistics {
35 total_accepted:int (id: 0);
36 total_candidates:int (id: 1);
37 rejection_reasons:[RejectionCount] (id: 2);
38}
39
40table ImuStatus {
41 // Whether the IMU is zeroed or not.
42 zeroed:bool (id: 0);
43 // Whether the IMU zeroing is faulted or not.
44 faulted_zero:bool (id: 1);
45 zeroing:frc971.control_loops.drivetrain.ImuZeroerState (id: 2);
46 // Offset between the pico clock and the pi clock, such that
47 // pico_timestamp + pico_offset_ns = pi_timestamp
48 pico_offset_ns:int64 (id: 3);
49 // Error in the offset, if we assume that the pi/pico clocks are identical and
50 // that there is a perfectly consistent latency between the two. Will be zero
51 // for the very first cycle, and then referenced off of the initial offset
52 // thereafter. If greater than zero, implies that the pico is "behind",
53 // whether due to unusually large latency or due to clock drift.
54 pico_offset_error_ns:int64 (id: 4);
55 left_encoder:double (id: 5);
56 right_encoder:double (id: 6);
57 imu_failures:frc971.controls.ImuFailures (id: 7);
58}
59
60table Status {
61 state: frc971.control_loops.drivetrain.LocalizerState (id: 0);
62 down_estimator:frc971.control_loops.drivetrain.DownEstimatorState (id: 1);
63 imu:ImuStatus (id: 2);
64 // Statistics are per-camera, by camera index.
65 statistics:[CumulativeStatistics] (id: 3);
66}
67
68root_type Status;