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