blob: 9f559f69cb0125f4c86b8a7e96d6026bafa88401 [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "swerve_drivetrain_writer",
srcs = [
"swerve_drivetrain_writer.cc",
],
hdrs = [
"swerve_drivetrain_writer.h",
],
deps = [
":swerve_module",
"//aos/logging",
"//frc971:can_configuration_fbs",
"//frc971/control_loops/drivetrain/swerve:swerve_drivetrain_output_fbs",
"//frc971/wpilib:falcon",
"//frc971/wpilib:loop_output_handler",
"//third_party:phoenix6",
],
)
cc_library(
name = "swerve_module",
hdrs = [
"swerve_module.h",
],
deps = [
"//frc971/wpilib:falcon",
],
)