blob: 6beea397cb64877d2130444094cc678ab560e2a4 [file] [log] [blame]
Alex Perry5fb5ff22019-02-09 21:53:17 -08001package(default_visibility = ["//y2019:__subpackages__"])
2
3genrule(
4 name = "genrule_stilts",
5 outs = [
6 "stilts_plant.h",
7 "stilts_plant.cc",
8 "integral_stilts_plant.h",
9 "integral_stilts_plant.cc",
10 ],
11 cmd = "$(location //y2019/control_loops/python:stilts) $(OUTS)",
12 tools = [
13 "//y2019/control_loops/python:stilts",
14 ],
15)
16
17cc_library(
18 name = "stilts_plants",
19 srcs = [
20 "stilts_plant.cc",
21 "integral_stilts_plant.cc",
22 ],
23 hdrs = [
24 "stilts_plant.h",
25 "integral_stilts_plant.h",
26 ],
27 visibility = ["//visibility:public"],
28 deps = [
29 "//frc971/control_loops:hybrid_state_feedback_loop",
30 "//frc971/control_loops:state_feedback_loop",
31 ],
32)