Philipp Schrader | 3de4dfc | 2023-02-15 20:18:25 -0800 | [diff] [blame] | 1 | load("//tools/build_rules:js.bzl", "ts_project") |
Austin Schuh | a1d006e | 2022-09-14 21:50:42 -0700 | [diff] [blame] | 2 | load("@com_github_google_flatbuffers//:build_defs.bzl", "flatbuffer_cc_library") |
| 3 | load("@com_github_google_flatbuffers//:typescript.bzl", "flatbuffer_ts_library") |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 4 | load("//aos:config.bzl", "aos_config") |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 5 | load("//tools/build_rules:select.bzl", "cpu_select") |
Austin Schuh | 41fad8c | 2021-10-23 21:25:12 -0700 | [diff] [blame] | 6 | load("//aos:flatbuffers.bzl", "cc_static_flatbuffer") |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 7 | |
Philipp Schrader | cc016b3 | 2021-12-30 08:59:58 -0800 | [diff] [blame] | 8 | package(default_visibility = ["//visibility:public"]) |
| 9 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 10 | flatbuffer_cc_library( |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 11 | name = "drivetrain_can_position_fbs", |
| 12 | srcs = ["drivetrain_can_position.fbs"], |
| 13 | gen_reflections = 1, |
| 14 | ) |
| 15 | |
| 16 | flatbuffer_cc_library( |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 17 | name = "spline_goal_fbs", |
| 18 | srcs = ["spline_goal.fbs"], |
| 19 | gen_reflections = 1, |
| 20 | includes = ["//frc971/control_loops:control_loops_fbs_includes"], |
| 21 | ) |
| 22 | |
| 23 | flatbuffer_cc_library( |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 24 | name = "drivetrain_goal_fbs", |
| 25 | srcs = ["drivetrain_goal.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 26 | gen_reflections = 1, |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 27 | includes = [ |
| 28 | ":spline_goal_fbs_includes", |
| 29 | "//frc971/control_loops:control_loops_fbs_includes", |
| 30 | ], |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 31 | ) |
| 32 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 33 | flatbuffer_cc_library( |
| 34 | name = "drivetrain_output_fbs", |
| 35 | srcs = ["drivetrain_output.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 36 | gen_reflections = 1, |
| 37 | ) |
| 38 | |
| 39 | flatbuffer_cc_library( |
| 40 | name = "drivetrain_position_fbs", |
| 41 | srcs = ["drivetrain_position.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 42 | gen_reflections = 1, |
| 43 | ) |
| 44 | |
| 45 | flatbuffer_cc_library( |
| 46 | name = "drivetrain_status_fbs", |
| 47 | srcs = ["drivetrain_status.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 48 | gen_reflections = 1, |
| 49 | includes = ["//frc971/control_loops:control_loops_fbs_includes"], |
| 50 | ) |
| 51 | |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 52 | flatbuffer_cc_library( |
| 53 | name = "trajectory_fbs", |
| 54 | srcs = ["trajectory.fbs"], |
| 55 | gen_reflections = 1, |
| 56 | includes = ["//frc971/control_loops:control_loops_fbs_includes"], |
| 57 | ) |
| 58 | |
Austin Schuh | 41fad8c | 2021-10-23 21:25:12 -0700 | [diff] [blame] | 59 | cc_static_flatbuffer( |
| 60 | name = "trajectory_schema", |
| 61 | function = "frc971::control_loops::drivetrain::fb::TrajectorySchema", |
| 62 | target = ":trajectory_fbs_reflection_out", |
| 63 | visibility = ["//visibility:public"], |
| 64 | ) |
| 65 | |
Alex Perry | 2124ae8 | 2020-03-07 14:19:06 -0800 | [diff] [blame] | 66 | flatbuffer_ts_library( |
| 67 | name = "drivetrain_status_ts_fbs", |
| 68 | srcs = ["drivetrain_status.fbs"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 69 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | dac091f | 2022-03-22 09:35:06 -0700 | [diff] [blame] | 70 | deps = ["//frc971/control_loops:control_loops_ts_fbs"], |
Alex Perry | 2124ae8 | 2020-03-07 14:19:06 -0800 | [diff] [blame] | 71 | ) |
| 72 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 73 | genrule( |
| 74 | name = "drivetrain_goal_float_fbs_generated", |
| 75 | srcs = ["drivetrain_goal.fbs"], |
| 76 | outs = ["drivetrain_goal_float.fbs"], |
| 77 | cmd = "cat $(SRCS) | sed 's/double/float/g' > $(OUTS)", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 78 | ) |
| 79 | |
| 80 | genrule( |
| 81 | name = "drivetrain_position_float_fbs_generated", |
| 82 | srcs = ["drivetrain_position.fbs"], |
| 83 | outs = ["drivetrain_position_float.fbs"], |
| 84 | cmd = "cat $(SRCS) | sed 's/double/float/g' > $(OUTS)", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 85 | ) |
| 86 | |
| 87 | genrule( |
| 88 | name = "drivetrain_output_float_fbs_generated", |
| 89 | srcs = ["drivetrain_output.fbs"], |
| 90 | outs = ["drivetrain_output_float.fbs"], |
| 91 | cmd = "cat $(SRCS) | sed 's/double/float/g' > $(OUTS)", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 92 | ) |
| 93 | |
| 94 | genrule( |
| 95 | name = "drivetrain_status_float_fbs_generated", |
| 96 | srcs = ["drivetrain_status.fbs"], |
| 97 | outs = ["drivetrain_status_float.fbs"], |
| 98 | cmd = "cat $(SRCS) | sed 's/double/float/g' > $(OUTS)", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 99 | ) |
| 100 | |
| 101 | flatbuffer_cc_library( |
| 102 | name = "drivetrain_goal_float_fbs", |
| 103 | srcs = ["drivetrain_goal_float.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 104 | gen_reflections = 1, |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 105 | includes = [ |
| 106 | ":spline_goal_fbs_includes", |
| 107 | "//frc971/control_loops:control_loops_fbs_includes", |
| 108 | ], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 109 | ) |
| 110 | |
| 111 | flatbuffer_cc_library( |
| 112 | name = "drivetrain_output_float_fbs", |
| 113 | srcs = ["drivetrain_output_float.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 114 | gen_reflections = 1, |
| 115 | ) |
| 116 | |
| 117 | flatbuffer_cc_library( |
| 118 | name = "drivetrain_position_float_fbs", |
| 119 | srcs = ["drivetrain_position_float.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 120 | gen_reflections = 1, |
| 121 | ) |
| 122 | |
| 123 | flatbuffer_cc_library( |
| 124 | name = "drivetrain_status_float_fbs", |
| 125 | srcs = ["drivetrain_status_float.fbs"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 126 | gen_reflections = 1, |
| 127 | includes = ["//frc971/control_loops:control_loops_fbs_includes"], |
| 128 | ) |
| 129 | |
| 130 | aos_config( |
James Kuszmaul | 74d8f97 | 2020-02-11 17:13:17 -0800 | [diff] [blame] | 131 | name = "simulation_channels", |
| 132 | src = "drivetrain_simulation_channels.json", |
| 133 | flatbuffers = [ |
| 134 | ":drivetrain_status_fbs", |
| 135 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 136 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | 74d8f97 | 2020-02-11 17:13:17 -0800 | [diff] [blame] | 137 | visibility = ["//visibility:public"], |
| 138 | ) |
| 139 | |
| 140 | aos_config( |
| 141 | name = "simulation_config", |
| 142 | src = "drivetrain_simulation_config.json", |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 143 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | 74d8f97 | 2020-02-11 17:13:17 -0800 | [diff] [blame] | 144 | visibility = ["//visibility:public"], |
| 145 | deps = [ |
Austin Schuh | c5fa6d9 | 2022-02-25 14:36:28 -0800 | [diff] [blame] | 146 | ":aos_config", |
James Kuszmaul | 74d8f97 | 2020-02-11 17:13:17 -0800 | [diff] [blame] | 147 | ":simulation_channels", |
| 148 | ], |
| 149 | ) |
| 150 | |
| 151 | aos_config( |
Austin Schuh | c5fa6d9 | 2022-02-25 14:36:28 -0800 | [diff] [blame] | 152 | name = "aos_config", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 153 | src = "drivetrain_config.json", |
| 154 | flatbuffers = [ |
| 155 | ":drivetrain_goal_fbs", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 156 | ":trajectory_fbs", |
| 157 | ":spline_goal_fbs", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 158 | ":drivetrain_output_fbs", |
| 159 | ":drivetrain_status_fbs", |
| 160 | ":drivetrain_position_fbs", |
| 161 | ":localizer_fbs", |
Tyler Chatow | 24b5db1 | 2020-01-06 21:16:56 -0800 | [diff] [blame] | 162 | "//frc971/queues:gyro_fbs", |
| 163 | "//frc971/queues:gyro_uid_fbs", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 164 | "//frc971/wpilib:imu_fbs", |
Austin Schuh | ac17fba | 2020-03-28 15:55:33 -0700 | [diff] [blame] | 165 | "//frc971/wpilib:imu_batch_fbs", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 166 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 167 | target_compatible_with = ["@platforms//os:linux"], |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 168 | visibility = ["//visibility:public"], |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 169 | deps = [ |
Austin Schuh | c5fa6d9 | 2022-02-25 14:36:28 -0800 | [diff] [blame] | 170 | "//frc971/input:aos_config", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 171 | ], |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 172 | ) |
| 173 | |
| 174 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 175 | name = "drivetrain_config", |
| 176 | hdrs = [ |
| 177 | "drivetrain_config.h", |
| 178 | ], |
| 179 | deps = [ |
| 180 | "//frc971:shifter_hall_effect", |
| 181 | "//frc971/control_loops:state_feedback_loop", |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 182 | ] + select({ |
| 183 | "@platforms//os:linux": ["//frc971/control_loops:hybrid_state_feedback_loop"], |
| 184 | "//conditions:default": [], |
| 185 | }), |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 186 | ) |
| 187 | |
| 188 | cc_library( |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 189 | name = "hybrid_ekf", |
| 190 | hdrs = ["hybrid_ekf.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 191 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 192 | deps = [ |
| 193 | ":drivetrain_config", |
James Kuszmaul | 3c5b4d3 | 2020-02-11 17:22:14 -0800 | [diff] [blame] | 194 | "//aos:math", |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 195 | "//aos/containers:priority_queue", |
James Kuszmaul | fedc461 | 2019-03-10 11:24:51 -0700 | [diff] [blame] | 196 | "//aos/util:math", |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 197 | "//frc971/control_loops:c2d", |
| 198 | "//frc971/control_loops:runge_kutta", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 199 | "@org_tuxfamily_eigen//:eigen", |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 200 | ], |
| 201 | ) |
| 202 | |
| 203 | cc_test( |
| 204 | name = "hybrid_ekf_test", |
| 205 | srcs = ["hybrid_ekf_test.cc"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 206 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 207 | deps = [ |
| 208 | ":drivetrain_test_lib", |
| 209 | ":hybrid_ekf", |
| 210 | ":trajectory", |
| 211 | "//aos/testing:googletest", |
| 212 | "//aos/testing:random_seed", |
| 213 | "//aos/testing:test_shm", |
| 214 | ], |
| 215 | ) |
| 216 | |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 217 | flatbuffer_cc_library( |
| 218 | name = "localizer_fbs", |
| 219 | srcs = ["localizer.fbs"], |
| 220 | gen_reflections = 1, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 221 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | ef428a0 | 2019-03-02 22:19:41 -0800 | [diff] [blame] | 222 | ) |
| 223 | |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 224 | cc_library( |
James Kuszmaul | 3431d62 | 2019-02-17 17:07:44 -0800 | [diff] [blame] | 225 | name = "localizer", |
| 226 | hdrs = ["localizer.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 227 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | 3431d62 | 2019-02-17 17:07:44 -0800 | [diff] [blame] | 228 | deps = [ |
| 229 | ":drivetrain_config", |
James Kuszmaul | 3c5b4d3 | 2020-02-11 17:22:14 -0800 | [diff] [blame] | 230 | ":drivetrain_status_fbs", |
James Kuszmaul | 3431d62 | 2019-02-17 17:07:44 -0800 | [diff] [blame] | 231 | ":hybrid_ekf", |
James Kuszmaul | 5398fae | 2020-02-17 16:44:03 -0800 | [diff] [blame] | 232 | "//frc971/control_loops:control_loops_fbs", |
James Kuszmaul | 5bc6fc9 | 2019-03-01 21:50:06 -0800 | [diff] [blame] | 233 | "//frc971/control_loops:pose", |
James Kuszmaul | 3431d62 | 2019-02-17 17:07:44 -0800 | [diff] [blame] | 234 | ], |
| 235 | ) |
| 236 | |
| 237 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 238 | name = "gear", |
| 239 | hdrs = [ |
| 240 | "gear.h", |
| 241 | ], |
Austin Schuh | 093535c | 2016-03-05 23:21:00 -0800 | [diff] [blame] | 242 | ) |
| 243 | |
| 244 | cc_library( |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 245 | name = "splinedrivetrain", |
| 246 | srcs = [ |
| 247 | "splinedrivetrain.cc", |
| 248 | ], |
| 249 | hdrs = [ |
| 250 | "splinedrivetrain.h", |
| 251 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 252 | target_compatible_with = ["@platforms//os:linux"], |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 253 | deps = [ |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 254 | ":distance_spline", |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 255 | ":drivetrain_config", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 256 | ":drivetrain_goal_fbs", |
| 257 | ":drivetrain_output_fbs", |
| 258 | ":drivetrain_status_fbs", |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 259 | ":spline", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 260 | ":spline_goal_fbs", |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 261 | ":trajectory", |
Austin Schuh | 3d9ccd7 | 2020-08-01 15:42:40 -0700 | [diff] [blame] | 262 | "//aos:condition", |
Alex Perry | 1ec3452 | 2019-02-17 22:44:10 -0800 | [diff] [blame] | 263 | "//aos:init", |
James Kuszmaul | c73bb22 | 2019-04-07 12:15:35 -0700 | [diff] [blame] | 264 | "//aos/util:math", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 265 | "//frc971/control_loops:control_loops_fbs", |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 266 | ], |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 267 | ) |
| 268 | |
| 269 | cc_library( |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 270 | name = "line_follow_drivetrain", |
| 271 | srcs = [ |
| 272 | "line_follow_drivetrain.cc", |
| 273 | ], |
| 274 | hdrs = [ |
| 275 | "line_follow_drivetrain.h", |
| 276 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 277 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 278 | deps = [ |
| 279 | ":drivetrain_config", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 280 | ":drivetrain_goal_fbs", |
| 281 | ":drivetrain_output_fbs", |
| 282 | ":drivetrain_status_fbs", |
James Kuszmaul | 5bc6fc9 | 2019-03-01 21:50:06 -0800 | [diff] [blame] | 283 | ":localizer", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 284 | ":spline_goal_fbs", |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 285 | "//aos:math", |
| 286 | "//aos/util:math", |
| 287 | "//frc971/control_loops:c2d", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 288 | "//frc971/control_loops:control_loops_fbs", |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 289 | "//frc971/control_loops:dlqr", |
| 290 | "//frc971/control_loops:pose", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 291 | "//frc971/control_loops:profiled_subsystem_fbs", |
| 292 | "//y2019/control_loops/superstructure:superstructure_goal_fbs", |
| 293 | "@org_tuxfamily_eigen//:eigen", |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 294 | ], |
| 295 | ) |
| 296 | |
| 297 | cc_test( |
| 298 | name = "line_follow_drivetrain_test", |
| 299 | srcs = ["line_follow_drivetrain_test.cc"], |
| 300 | linkstatic = True, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 301 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 302 | deps = [ |
| 303 | ":drivetrain_config", |
| 304 | ":drivetrain_test_lib", |
| 305 | ":line_follow_drivetrain", |
| 306 | ":trajectory", |
| 307 | "//aos/testing:googletest", |
| 308 | "//aos/testing:test_shm", |
| 309 | "//third_party/matplotlib-cpp", |
| 310 | "@com_github_gflags_gflags//:gflags", |
| 311 | ], |
| 312 | ) |
| 313 | |
| 314 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 315 | name = "ssdrivetrain", |
| 316 | srcs = [ |
| 317 | "ssdrivetrain.cc", |
| 318 | ], |
| 319 | hdrs = [ |
| 320 | "ssdrivetrain.h", |
| 321 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 322 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 323 | deps = [ |
| 324 | ":drivetrain_config", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 325 | ":drivetrain_goal_fbs", |
| 326 | ":drivetrain_output_fbs", |
Austin Schuh | 95771d9 | 2021-01-23 14:42:25 -0800 | [diff] [blame] | 327 | ":drivetrain_states", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 328 | ":drivetrain_status_fbs", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 329 | ":gear", |
James Kuszmaul | 3431d62 | 2019-02-17 17:07:44 -0800 | [diff] [blame] | 330 | ":localizer", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 331 | ":spline_goal_fbs", |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 332 | "//aos:math", |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 333 | "//aos/util:log_interval", |
| 334 | "//aos/util:trapezoid_profile", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 335 | "//frc971:shifter_hall_effect", |
| 336 | "//frc971/control_loops:coerce_goal", |
Austin Schuh | 0a3c9d4 | 2021-07-15 22:36:24 -0700 | [diff] [blame] | 337 | "//frc971/control_loops:control_loop", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 338 | "//frc971/control_loops:control_loops_fbs", |
Austin Schuh | 0a3c9d4 | 2021-07-15 22:36:24 -0700 | [diff] [blame] | 339 | "//frc971/control_loops:polytope", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 340 | "//frc971/control_loops:state_feedback_loop", |
Austin Schuh | 0a3c9d4 | 2021-07-15 22:36:24 -0700 | [diff] [blame] | 341 | "//frc971/input:robot_state_fbs", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 342 | ], |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 343 | ) |
| 344 | |
| 345 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 346 | name = "polydrivetrain", |
| 347 | srcs = [ |
| 348 | "polydrivetrain.cc", |
| 349 | ], |
| 350 | hdrs = [ |
| 351 | "polydrivetrain.h", |
| 352 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 353 | copts = select({ |
| 354 | "@platforms//os:none": ["-Wno-type-limits"], |
| 355 | "//conditions:default": [], |
| 356 | }), |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 357 | deps = [ |
| 358 | ":drivetrain_config", |
Austin Schuh | 95771d9 | 2021-01-23 14:42:25 -0800 | [diff] [blame] | 359 | ":drivetrain_states", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 360 | ":gear", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 361 | ":spline_goal_fbs", |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 362 | "//aos:math", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 363 | "//frc971/control_loops:coerce_goal", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 364 | "//frc971/control_loops:control_loops_fbs", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 365 | "//frc971/control_loops:polytope", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 366 | "//frc971/control_loops:state_feedback_loop", |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 367 | ] + select({ |
| 368 | "@platforms//os:linux": [ |
| 369 | ":drivetrain_goal_fbs", |
| 370 | ":drivetrain_output_fbs", |
| 371 | ":drivetrain_position_fbs", |
| 372 | ":drivetrain_status_fbs", |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 373 | "//aos/util:log_interval", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 374 | "//frc971/input:robot_state_fbs", |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 375 | ], |
| 376 | "@platforms//os:none": [ |
| 377 | ":drivetrain_goal_float_fbs", |
| 378 | ":drivetrain_output_float_fbs", |
| 379 | ":drivetrain_position_float_fbs", |
| 380 | ":drivetrain_status_float_fbs", |
| 381 | ], |
| 382 | }), |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 383 | ) |
| 384 | |
Austin Schuh | 05c5a61 | 2016-04-02 15:10:25 -0700 | [diff] [blame] | 385 | genrule( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 386 | name = "genrule_down_estimator", |
| 387 | outs = [ |
| 388 | "down_estimator.h", |
| 389 | "down_estimator.cc", |
| 390 | ], |
| 391 | cmd = "$(location //frc971/control_loops/python:down_estimator) $(OUTS)", |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 392 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 393 | tools = [ |
| 394 | "//frc971/control_loops/python:down_estimator", |
| 395 | ], |
| 396 | visibility = ["//visibility:private"], |
Austin Schuh | 05c5a61 | 2016-04-02 15:10:25 -0700 | [diff] [blame] | 397 | ) |
| 398 | |
| 399 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 400 | name = "down_estimator", |
| 401 | srcs = [ |
| 402 | "down_estimator.cc", |
| 403 | ], |
| 404 | hdrs = [ |
| 405 | "down_estimator.h", |
| 406 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 407 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 408 | deps = [ |
| 409 | "//frc971/control_loops:state_feedback_loop", |
| 410 | ], |
Austin Schuh | 05c5a61 | 2016-04-02 15:10:25 -0700 | [diff] [blame] | 411 | ) |
| 412 | |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 413 | cc_library( |
Austin Schuh | 95771d9 | 2021-01-23 14:42:25 -0800 | [diff] [blame] | 414 | name = "drivetrain_states", |
| 415 | hdrs = ["drivetrain_states.h"], |
| 416 | ) |
| 417 | |
| 418 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 419 | name = "drivetrain_lib", |
| 420 | srcs = [ |
| 421 | "drivetrain.cc", |
| 422 | ], |
| 423 | hdrs = [ |
| 424 | "drivetrain.h", |
| 425 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 426 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 427 | deps = [ |
| 428 | ":down_estimator", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 429 | ":drivetrain_goal_fbs", |
| 430 | ":drivetrain_output_fbs", |
| 431 | ":drivetrain_position_fbs", |
Austin Schuh | 95771d9 | 2021-01-23 14:42:25 -0800 | [diff] [blame] | 432 | ":drivetrain_states", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 433 | ":drivetrain_status_fbs", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 434 | ":gear", |
James Kuszmaul | 3e1bb27 | 2020-01-17 18:38:19 -0800 | [diff] [blame] | 435 | ":improved_down_estimator", |
James Kuszmaul | e39cbcf | 2019-02-27 20:48:34 -0800 | [diff] [blame] | 436 | ":line_follow_drivetrain", |
James Kuszmaul | 3431d62 | 2019-02-17 17:07:44 -0800 | [diff] [blame] | 437 | ":localizer", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 438 | ":localizer_fbs", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 439 | ":polydrivetrain", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 440 | ":spline_goal_fbs", |
Alex Perry | 731b460 | 2019-02-02 22:13:01 -0800 | [diff] [blame] | 441 | ":splinedrivetrain", |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 442 | ":ssdrivetrain", |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 443 | "//aos/util:log_interval", |
Austin Schuh | 0a3c9d4 | 2021-07-15 22:36:24 -0700 | [diff] [blame] | 444 | "//frc971/control_loops:control_loop", |
Austin Schuh | 3a37846 | 2019-01-04 21:48:04 -0800 | [diff] [blame] | 445 | "//frc971/control_loops:runge_kutta", |
Tyler Chatow | 24b5db1 | 2020-01-06 21:16:56 -0800 | [diff] [blame] | 446 | "//frc971/queues:gyro_fbs", |
Austin Schuh | ac17fba | 2020-03-28 15:55:33 -0700 | [diff] [blame] | 447 | "//frc971/wpilib:imu_batch_fbs", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 448 | "//frc971/wpilib:imu_fbs", |
James Kuszmaul | 3e1bb27 | 2020-01-17 18:38:19 -0800 | [diff] [blame] | 449 | "//frc971/zeroing:imu_zeroer", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 450 | ], |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 451 | ) |
| 452 | |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 453 | cc_library( |
| 454 | name = "drivetrain_test_lib", |
| 455 | testonly = True, |
| 456 | srcs = ["drivetrain_test_lib.cc"], |
| 457 | hdrs = ["drivetrain_test_lib.h"], |
James Kuszmaul | 74d8f97 | 2020-02-11 17:13:17 -0800 | [diff] [blame] | 458 | defines = |
| 459 | cpu_select({ |
| 460 | "amd64": [ |
| 461 | "SUPPORT_PLOT=1", |
| 462 | ], |
| 463 | "arm": [], |
| 464 | }), |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 465 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 466 | deps = [ |
| 467 | ":drivetrain_config", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 468 | ":drivetrain_goal_fbs", |
| 469 | ":drivetrain_output_fbs", |
| 470 | ":drivetrain_position_fbs", |
| 471 | ":drivetrain_status_fbs", |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 472 | ":trajectory", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 473 | "//aos/events:event_loop", |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 474 | "//aos/testing:googletest", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 475 | "//frc971/control_loops:control_loops_fbs", |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 476 | "//frc971/control_loops:state_feedback_loop", |
Tyler Chatow | 24b5db1 | 2020-01-06 21:16:56 -0800 | [diff] [blame] | 477 | "//frc971/queues:gyro_fbs", |
Austin Schuh | ac17fba | 2020-03-28 15:55:33 -0700 | [diff] [blame] | 478 | "//frc971/wpilib:imu_batch_fbs", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 479 | "//frc971/wpilib:imu_fbs", |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 480 | "//y2016:constants", |
| 481 | "//y2016/control_loops/drivetrain:polydrivetrain_plants", |
James Kuszmaul | 74d8f97 | 2020-02-11 17:13:17 -0800 | [diff] [blame] | 482 | ] + cpu_select({ |
| 483 | "amd64": [ |
| 484 | "//third_party/matplotlib-cpp", |
| 485 | ], |
| 486 | "arm": [], |
| 487 | }), |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 488 | ) |
| 489 | |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 490 | cc_test( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 491 | name = "drivetrain_lib_test", |
| 492 | srcs = [ |
| 493 | "drivetrain_lib_test.cc", |
| 494 | ], |
Austin Schuh | 14d7d3d | 2020-09-10 18:14:36 -0700 | [diff] [blame] | 495 | data = [":simulation_config"], |
Alex Perry | 04300d6 | 2019-02-17 14:37:04 -0800 | [diff] [blame] | 496 | defines = |
| 497 | cpu_select({ |
| 498 | "amd64": [ |
| 499 | "SUPPORT_PLOT=1", |
| 500 | ], |
| 501 | "arm": [], |
| 502 | }), |
| 503 | linkstatic = True, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 504 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 505 | deps = [ |
| 506 | ":drivetrain_config", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 507 | ":drivetrain_goal_fbs", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 508 | ":drivetrain_lib", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 509 | ":drivetrain_output_fbs", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 510 | ":drivetrain_position_fbs", |
| 511 | ":drivetrain_status_fbs", |
James Kuszmaul | 109ed8d | 2019-02-17 21:41:04 -0800 | [diff] [blame] | 512 | ":drivetrain_test_lib", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 513 | ":localizer_fbs", |
| 514 | ":trajectory_generator", |
Austin Schuh | b06f03b | 2021-02-17 22:00:37 -0800 | [diff] [blame] | 515 | "//aos/events/logging:log_writer", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 516 | "//aos/testing:googletest", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 517 | "//frc971/control_loops:control_loop_test", |
Tyler Chatow | 24b5db1 | 2020-01-06 21:16:56 -0800 | [diff] [blame] | 518 | "//frc971/queues:gyro_fbs", |
James Kuszmaul | 3e1bb27 | 2020-01-17 18:38:19 -0800 | [diff] [blame] | 519 | "//frc971/wpilib:imu_fbs", |
Alex Perry | 04300d6 | 2019-02-17 14:37:04 -0800 | [diff] [blame] | 520 | ] + cpu_select({ |
| 521 | "amd64": [ |
| 522 | "//third_party/matplotlib-cpp", |
| 523 | ], |
| 524 | "arm": [], |
| 525 | }), |
Comran Morshed | 5323ecb | 2015-12-26 20:50:55 +0000 | [diff] [blame] | 526 | ) |
Brian Silverman | 6260c09 | 2018-01-14 15:21:36 -0800 | [diff] [blame] | 527 | |
| 528 | genrule( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 529 | name = "genrule_haptic_wheel", |
| 530 | outs = [ |
| 531 | "haptic_wheel.h", |
| 532 | "haptic_wheel.cc", |
| 533 | "integral_haptic_wheel.h", |
| 534 | "integral_haptic_wheel.cc", |
| 535 | "haptic_trigger.h", |
| 536 | "haptic_trigger.cc", |
| 537 | "integral_haptic_trigger.h", |
| 538 | "integral_haptic_trigger.cc", |
| 539 | ], |
| 540 | cmd = "$(location //frc971/control_loops/python:haptic_wheel) $(OUTS)", |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 541 | tools = [ |
| 542 | "//frc971/control_loops/python:haptic_wheel", |
| 543 | ], |
| 544 | visibility = ["//visibility:private"], |
Brian Silverman | 6260c09 | 2018-01-14 15:21:36 -0800 | [diff] [blame] | 545 | ) |
| 546 | |
| 547 | cc_library( |
Austin Schuh | bcce26a | 2018-03-26 23:41:24 -0700 | [diff] [blame] | 548 | name = "haptic_wheel", |
| 549 | srcs = [ |
| 550 | "haptic_trigger.cc", |
| 551 | "haptic_wheel.cc", |
| 552 | "integral_haptic_trigger.cc", |
| 553 | "integral_haptic_wheel.cc", |
| 554 | ], |
| 555 | hdrs = [ |
| 556 | "haptic_trigger.h", |
| 557 | "haptic_wheel.h", |
| 558 | "integral_haptic_trigger.h", |
| 559 | "integral_haptic_wheel.h", |
| 560 | ], |
| 561 | deps = [ |
| 562 | "//frc971/control_loops:state_feedback_loop", |
| 563 | ], |
Brian Silverman | 6260c09 | 2018-01-14 15:21:36 -0800 | [diff] [blame] | 564 | ) |
Austin Schuh | c2b0877 | 2018-12-19 18:05:06 +1100 | [diff] [blame] | 565 | |
| 566 | cc_library( |
| 567 | name = "spline", |
| 568 | srcs = ["spline.cc"], |
| 569 | hdrs = ["spline.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 570 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | c2b0877 | 2018-12-19 18:05:06 +1100 | [diff] [blame] | 571 | deps = [ |
Austin Schuh | f49b4e3 | 2019-01-13 17:26:58 -0800 | [diff] [blame] | 572 | "//frc971/control_loops:binomial", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 573 | "@org_tuxfamily_eigen//:eigen", |
Austin Schuh | c2b0877 | 2018-12-19 18:05:06 +1100 | [diff] [blame] | 574 | ], |
| 575 | ) |
| 576 | |
Alex Perry | a60da44 | 2019-01-21 19:00:27 -0500 | [diff] [blame] | 577 | cc_binary( |
| 578 | name = "spline.so", |
| 579 | srcs = ["libspline.cc"], |
James Kuszmaul | 2ed7b3c | 2019-02-09 18:26:19 -0800 | [diff] [blame] | 580 | linkshared = True, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 581 | target_compatible_with = ["@platforms//os:linux"], |
Alex Perry | a60da44 | 2019-01-21 19:00:27 -0500 | [diff] [blame] | 582 | deps = [ |
| 583 | ":distance_spline", |
| 584 | ":spline", |
Alex Perry | 0603b54 | 2019-01-25 20:29:51 -0800 | [diff] [blame] | 585 | ":trajectory", |
| 586 | "//aos/logging:implementations", |
| 587 | "//aos/network:team_number", |
James Kuszmaul | 8aa37cb | 2020-03-01 10:27:58 -0800 | [diff] [blame] | 588 | "//y2020/control_loops/drivetrain:drivetrain_base", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 589 | "@org_tuxfamily_eigen//:eigen", |
Alex Perry | a60da44 | 2019-01-21 19:00:27 -0500 | [diff] [blame] | 590 | ], |
Alex Perry | a60da44 | 2019-01-21 19:00:27 -0500 | [diff] [blame] | 591 | ) |
| 592 | |
Austin Schuh | c2b0877 | 2018-12-19 18:05:06 +1100 | [diff] [blame] | 593 | cc_test( |
| 594 | name = "spline_test", |
| 595 | srcs = [ |
| 596 | "spline_test.cc", |
| 597 | ], |
James Kuszmaul | e32fa93 | 2021-05-11 21:38:16 -0700 | [diff] [blame] | 598 | linkstatic = True, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 599 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | c2b0877 | 2018-12-19 18:05:06 +1100 | [diff] [blame] | 600 | deps = [ |
| 601 | ":spline", |
| 602 | "//aos/testing:googletest", |
James Kuszmaul | e32fa93 | 2021-05-11 21:38:16 -0700 | [diff] [blame] | 603 | "//frc971/analysis:in_process_plotter", |
Austin Schuh | c2b0877 | 2018-12-19 18:05:06 +1100 | [diff] [blame] | 604 | "@com_github_gflags_gflags//:gflags", |
| 605 | ], |
| 606 | ) |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 607 | |
| 608 | cc_library( |
| 609 | name = "distance_spline", |
| 610 | srcs = ["distance_spline.cc"], |
| 611 | hdrs = ["distance_spline.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 612 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 613 | deps = [ |
| 614 | ":spline", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 615 | ":trajectory_fbs", |
Austin Schuh | f7c6520 | 2022-11-04 21:28:20 -0700 | [diff] [blame] | 616 | "//aos/containers:sized_array", |
Austin Schuh | a6e7b21 | 2019-01-20 13:53:01 -0800 | [diff] [blame] | 617 | "//aos/logging", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 618 | "//frc971/control_loops:control_loops_fbs", |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 619 | "//frc971/control_loops:fixed_quadrature", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 620 | "@com_github_google_glog//:glog", |
Austin Schuh | f7c6520 | 2022-11-04 21:28:20 -0700 | [diff] [blame] | 621 | "@com_google_absl//absl/types:span", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 622 | "@org_tuxfamily_eigen//:eigen", |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 623 | ], |
| 624 | ) |
| 625 | |
| 626 | cc_test( |
| 627 | name = "distance_spline_test", |
| 628 | srcs = [ |
| 629 | "distance_spline_test.cc", |
| 630 | ], |
Austin Schuh | 9b0b643 | 2019-01-13 21:15:17 -0800 | [diff] [blame] | 631 | defines = |
| 632 | cpu_select({ |
| 633 | "amd64": [ |
| 634 | "SUPPORT_PLOT=1", |
| 635 | ], |
| 636 | "arm": [], |
| 637 | }), |
| 638 | linkstatic = True, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 639 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 640 | deps = [ |
| 641 | ":distance_spline", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 642 | "//aos:flatbuffers", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 643 | "//aos/testing:googletest", |
Austin Schuh | a6e7b21 | 2019-01-20 13:53:01 -0800 | [diff] [blame] | 644 | "//aos/testing:test_shm", |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 645 | "@com_github_gflags_gflags//:gflags", |
Austin Schuh | 9b0b643 | 2019-01-13 21:15:17 -0800 | [diff] [blame] | 646 | ] + cpu_select({ |
| 647 | "amd64": [ |
| 648 | "//third_party/matplotlib-cpp", |
| 649 | ], |
| 650 | "arm": [], |
| 651 | }), |
Austin Schuh | 941b46d | 2018-12-19 18:06:05 +1100 | [diff] [blame] | 652 | ) |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 653 | |
| 654 | cc_library( |
| 655 | name = "trajectory", |
| 656 | srcs = ["trajectory.cc"], |
| 657 | hdrs = ["trajectory.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 658 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 659 | deps = [ |
| 660 | ":distance_spline", |
| 661 | ":drivetrain_config", |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 662 | ":spline_goal_fbs", |
| 663 | ":trajectory_fbs", |
James Kuszmaul | 5e8ce31 | 2021-03-27 14:59:17 -0700 | [diff] [blame] | 664 | "//aos/util:math", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 665 | "//frc971/control_loops:c2d", |
| 666 | "//frc971/control_loops:dlqr", |
| 667 | "//frc971/control_loops:hybrid_state_feedback_loop", |
| 668 | "//frc971/control_loops:runge_kutta", |
| 669 | "//frc971/control_loops:state_feedback_loop", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 670 | "@org_tuxfamily_eigen//:eigen", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 671 | ], |
| 672 | ) |
| 673 | |
James Kuszmaul | 75a18c5 | 2021-03-10 22:02:07 -0800 | [diff] [blame] | 674 | cc_library( |
| 675 | name = "trajectory_generator", |
| 676 | srcs = ["trajectory_generator.cc"], |
| 677 | hdrs = ["trajectory_generator.h"], |
| 678 | target_compatible_with = ["@platforms//os:linux"], |
| 679 | deps = [ |
| 680 | ":distance_spline", |
| 681 | ":drivetrain_config", |
| 682 | ":spline_goal_fbs", |
| 683 | ":trajectory", |
| 684 | ":trajectory_fbs", |
| 685 | ], |
| 686 | ) |
| 687 | |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 688 | cc_binary( |
| 689 | name = "trajectory_plot", |
| 690 | srcs = [ |
| 691 | "trajectory_plot.cc", |
| 692 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 693 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 694 | deps = [ |
| 695 | ":distance_spline", |
| 696 | ":trajectory", |
| 697 | "//aos/logging:implementations", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 698 | "//aos/network:team_number", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 699 | "//third_party/matplotlib-cpp", |
Austin Schuh | 1104318 | 2019-03-23 22:29:12 -0700 | [diff] [blame] | 700 | "//y2019/control_loops/drivetrain:drivetrain_base", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 701 | "@com_github_gflags_gflags//:gflags", |
Alex Perry | cb7da4b | 2019-08-28 19:35:56 -0700 | [diff] [blame] | 702 | "@org_tuxfamily_eigen//:eigen", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 703 | ], |
| 704 | ) |
| 705 | |
| 706 | cc_test( |
| 707 | name = "trajectory_test", |
| 708 | srcs = [ |
| 709 | "trajectory_test.cc", |
| 710 | ], |
Austin Schuh | 719a33e | 2019-01-07 15:13:34 -0800 | [diff] [blame] | 711 | defines = |
| 712 | cpu_select({ |
| 713 | "amd64": [ |
| 714 | "SUPPORT_PLOT=1", |
| 715 | ], |
| 716 | "arm": [], |
| 717 | }), |
| 718 | linkstatic = True, |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 719 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 720 | deps = [ |
James Kuszmaul | ea314d9 | 2019-02-18 19:45:06 -0800 | [diff] [blame] | 721 | ":drivetrain_test_lib", |
Maxwell Henderson | cef6f04 | 2023-05-26 14:38:09 -0700 | [diff] [blame^] | 722 | ":trajectory", |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 723 | "//aos/testing:googletest", |
| 724 | "//aos/testing:test_shm", |
| 725 | "//y2016:constants", |
| 726 | "//y2016/control_loops/drivetrain:polydrivetrain_plants", |
James Kuszmaul | ea314d9 | 2019-02-18 19:45:06 -0800 | [diff] [blame] | 727 | "//y2019/control_loops/drivetrain:drivetrain_base", |
Austin Schuh | 719a33e | 2019-01-07 15:13:34 -0800 | [diff] [blame] | 728 | ] + cpu_select({ |
| 729 | "amd64": [ |
| 730 | "//third_party/matplotlib-cpp", |
| 731 | ], |
| 732 | "arm": [], |
| 733 | }), |
Austin Schuh | ec7f06d | 2019-01-04 07:47:15 +1100 | [diff] [blame] | 734 | ) |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 735 | |
| 736 | cc_library( |
| 737 | name = "improved_down_estimator", |
| 738 | srcs = [ |
| 739 | "improved_down_estimator.cc", |
| 740 | ], |
| 741 | hdrs = [ |
| 742 | "improved_down_estimator.h", |
| 743 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 744 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 745 | deps = [ |
James Kuszmaul | 7f55f07 | 2020-03-01 10:21:26 -0800 | [diff] [blame] | 746 | ":drivetrain_config", |
James Kuszmaul | 3e1bb27 | 2020-01-17 18:38:19 -0800 | [diff] [blame] | 747 | ":drivetrain_status_fbs", |
| 748 | "//aos/events:event_loop", |
| 749 | "//frc971/control_loops:control_loops_fbs", |
Austin Schuh | 0a3c9d4 | 2021-07-15 22:36:24 -0700 | [diff] [blame] | 750 | "//frc971/control_loops:quaternion_utils", |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 751 | "//frc971/control_loops:runge_kutta", |
James Kuszmaul | 3e1bb27 | 2020-01-17 18:38:19 -0800 | [diff] [blame] | 752 | "@//aos/time", |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 753 | "@com_github_google_glog//:glog", |
| 754 | "@org_tuxfamily_eigen//:eigen", |
| 755 | ], |
| 756 | ) |
| 757 | |
| 758 | cc_test( |
| 759 | name = "improved_down_estimator_test", |
| 760 | srcs = [ |
| 761 | "improved_down_estimator_test.cc", |
| 762 | ], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 763 | target_compatible_with = ["@platforms//os:linux"], |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 764 | deps = [ |
James Kuszmaul | 7f55f07 | 2020-03-01 10:21:26 -0800 | [diff] [blame] | 765 | ":drivetrain_test_lib", |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 766 | "//aos/testing:googletest", |
| 767 | "//aos/testing:random_seed", |
Austin Schuh | 0a3c9d4 | 2021-07-15 22:36:24 -0700 | [diff] [blame] | 768 | "//frc971/control_loops:quaternion_utils", |
Austin Schuh | ca08081 | 2017-05-10 19:31:55 -0700 | [diff] [blame] | 769 | "//frc971/control_loops/drivetrain:improved_down_estimator", |
| 770 | "@org_tuxfamily_eigen//:eigen", |
| 771 | ], |
| 772 | ) |
James Kuszmaul | f4ede20 | 2020-02-14 08:47:40 -0800 | [diff] [blame] | 773 | |
| 774 | cc_library( |
| 775 | name = "camera", |
| 776 | srcs = ["camera.h"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 777 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | f4ede20 | 2020-02-14 08:47:40 -0800 | [diff] [blame] | 778 | visibility = ["//visibility:public"], |
| 779 | deps = [ |
| 780 | "//aos/containers:sized_array", |
| 781 | "//frc971/control_loops:pose", |
| 782 | ], |
| 783 | ) |
| 784 | |
| 785 | cc_test( |
| 786 | name = "camera_test", |
| 787 | srcs = ["camera_test.cc"], |
Philipp Schrader | dada107 | 2020-11-24 11:34:46 -0800 | [diff] [blame] | 788 | target_compatible_with = ["@platforms//os:linux"], |
James Kuszmaul | f4ede20 | 2020-02-14 08:47:40 -0800 | [diff] [blame] | 789 | deps = [ |
| 790 | ":camera", |
| 791 | "//aos/testing:googletest", |
| 792 | ], |
| 793 | ) |
James Kuszmaul | c4ae11c | 2020-12-26 16:26:58 -0800 | [diff] [blame] | 794 | |
Philipp Schrader | 3de4dfc | 2023-02-15 20:18:25 -0800 | [diff] [blame] | 795 | ts_project( |
James Kuszmaul | ac2b6b4 | 2021-03-07 22:38:06 -0800 | [diff] [blame] | 796 | name = "down_estimator_plotter", |
| 797 | srcs = ["down_estimator_plotter.ts"], |
| 798 | target_compatible_with = ["@platforms//os:linux"], |
| 799 | deps = [ |
| 800 | "//aos/network/www:aos_plotter", |
| 801 | "//aos/network/www:colors", |
| 802 | "//aos/network/www:proxy", |
| 803 | "//frc971/wpilib:imu_plot_utils", |
| 804 | ], |
| 805 | ) |
| 806 | |
Philipp Schrader | 3de4dfc | 2023-02-15 20:18:25 -0800 | [diff] [blame] | 807 | ts_project( |
James Kuszmaul | 73fc135 | 2021-04-09 22:31:25 -0700 | [diff] [blame] | 808 | name = "spline_plotter", |
| 809 | srcs = ["spline_plotter.ts"], |
| 810 | target_compatible_with = ["@platforms//os:linux"], |
| 811 | deps = [ |
| 812 | "//aos/network/www:aos_plotter", |
| 813 | "//aos/network/www:colors", |
| 814 | "//aos/network/www:proxy", |
| 815 | ], |
| 816 | ) |
| 817 | |
Philipp Schrader | 3de4dfc | 2023-02-15 20:18:25 -0800 | [diff] [blame] | 818 | ts_project( |
James Kuszmaul | c4ae11c | 2020-12-26 16:26:58 -0800 | [diff] [blame] | 819 | name = "drivetrain_plotter", |
| 820 | srcs = ["drivetrain_plotter.ts"], |
| 821 | target_compatible_with = ["@platforms//os:linux"], |
| 822 | deps = [ |
| 823 | "//aos/network/www:aos_plotter", |
James Kuszmaul | 933a974 | 2021-03-07 19:59:06 -0800 | [diff] [blame] | 824 | "//aos/network/www:colors", |
James Kuszmaul | c4ae11c | 2020-12-26 16:26:58 -0800 | [diff] [blame] | 825 | "//aos/network/www:proxy", |
| 826 | "//frc971/wpilib:imu_plot_utils", |
| 827 | ], |
| 828 | ) |
milind upadhyay | 9bd381d | 2021-01-23 13:44:13 -0800 | [diff] [blame] | 829 | |
Philipp Schrader | 3de4dfc | 2023-02-15 20:18:25 -0800 | [diff] [blame] | 830 | ts_project( |
milind upadhyay | 9bd381d | 2021-01-23 13:44:13 -0800 | [diff] [blame] | 831 | name = "robot_state_plotter", |
| 832 | srcs = ["robot_state_plotter.ts"], |
| 833 | target_compatible_with = ["@platforms//os:linux"], |
| 834 | deps = [ |
| 835 | "//aos/network/www:aos_plotter", |
James Kuszmaul | 933a974 | 2021-03-07 19:59:06 -0800 | [diff] [blame] | 836 | "//aos/network/www:colors", |
milind upadhyay | 9bd381d | 2021-01-23 13:44:13 -0800 | [diff] [blame] | 837 | "//aos/network/www:proxy", |
| 838 | ], |
| 839 | ) |