blob: 3d007beb0c64312139f66792462012b31a89f1f8 [file] [log] [blame]
package(default_visibility = ["//y2019:__subpackages__"])
genrule(
name = "genrule_wrist",
outs = [
"wrist_plant.h",
"wrist_plant.cc",
"integral_wrist_plant.h",
"integral_wrist_plant.cc",
],
cmd = "$(location //y2019/control_loops/python:wrist) $(OUTS)",
tools = [
"//y2019/control_loops/python:wrist",
],
)
cc_library(
name = "wrist_plants",
srcs = [
"wrist_plant.cc",
"integral_wrist_plant.cc",
],
hdrs = [
"wrist_plant.h",
"integral_wrist_plant.h",
],
visibility = ["//visibility:public"],
deps = [
"//frc971/control_loops:hybrid_state_feedback_loop",
"//frc971/control_loops:state_feedback_loop",
],
)