blob: 0c7a792f197878b75fcebf58d83f1fc1fc2f7925 [file] [log] [blame]
James (Peilun) Lia70e5752024-09-18 20:43:00 -07001include "frc971/vision/calibration.fbs";
2include "frc971/vision/target_map.fbs";
3include "frc971/control_loops/profiled_subsystem.fbs";
4include "frc971/zeroing/constants.fbs";
5include "frc971/math/matrix.fbs";
6
7namespace y2024_bot3;
8
9table CameraConfiguration {
10 calibration:frc971.vision.calibration.CameraCalibration (id: 0);
11}
12
13table RobotConstants {
14}
15
16// Common table for constants unrelated to the robot
17table Common {
18 target_map:frc971.vision.TargetMap (id: 0);
19}
20
21table Constants {
22 cameras:[CameraConfiguration] (id: 0);
23 robot:RobotConstants (id: 1);
24 common:Common (id: 2);
25}
26
27root_type Constants;