blob: cb9fcf4ee0e4254430afa86541a6c64f7163f242 [file] [log] [blame]
genrule(
name = 'genrule_shooter',
cmd = '$(location //y2017/control_loops/python:shooter) $(OUTS)',
tools = [
'//y2017/control_loops/python:shooter',
],
outs = [
'shooter_plant.h',
'shooter_plant.cc',
'shooter_integral_plant.h',
'shooter_integral_plant.cc',
],
)
cc_library(
name = 'shooter_plants',
visibility = ['//visibility:public'],
srcs = [
'shooter_plant.cc',
'shooter_integral_plant.cc',
],
hdrs = [
'shooter_plant.h',
'shooter_integral_plant.h',
],
deps = [
'//frc971/control_loops:state_feedback_loop',
],
)