| package(default_visibility = ['//visibility:public']) |
| |
| genrule( |
| name = 'genrule_turret', |
| visibility = ['//visibility:private'], |
| 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', |
| srcs = [ |
| 'turret_plant.cc', |
| 'turret_integral_plant.cc', |
| ], |
| hdrs = [ |
| 'turret_plant.h', |
| 'turret_integral_plant.h', |
| ], |
| deps = [ |
| '//frc971/control_loops:state_feedback_loop', |
| ], |
| ) |