blob: e4e25adc695d2c3f38cc29c90f0c7f7e8e0717d0 [file] [log] [blame]
Brian Silvermand4417aa2014-01-18 12:45:12 -08001#include "frc971/control_loops/shooter/shooter.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
joe93778a62014-02-15 13:22:14 -08007 frc971::control_loops::ShooterMotor shooter;
Brian Silvermand4417aa2014-01-18 12:45:12 -08008 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}