blob: 1b5c6f641028aa0d586f999ef28d1b692e6703f3 [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,
James Kuszmaul04a343c2023-02-20 16:38:22 -080020}
21
22table RejectionCount {
23 error:RejectionReason (id: 0);
24 count:uint (id: 1);
25}
26
27table CumulativeStatistics {
28 total_accepted:int (id: 0);
29 total_candidates:int (id: 1);
30 rejection_reasons:[RejectionCount] (id: 2);
31}
32
33table 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
53table 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
61root_type Status;