blob: 70b9508ad27f897d6378bea9487b1b46d78e1a0f [file] [log] [blame]
genrule(
name = 'genrule_turret',
cmd = '$(location //y2017/control_loops/python:turret) $(OUTS)',
tools = [
'//y2017/control_loops/python:turret',
],
outs = [
'turret_plant.h',
'turret_plant.cc',
'turret_integral_plant.h',
'turret_integral_plant.cc',
],
)
cc_library(
name = 'turret_plants',
visibility = ['//visibility:public'],
srcs = [
'turret_plant.cc',
'turret_integral_plant.cc',
],
hdrs = [
'turret_plant.h',
'turret_integral_plant.h',
],
deps = [
'//frc971/control_loops:state_feedback_loop',
],
)