blob: e4e25adc695d2c3f38cc29c90f0c7f7e8e0717d0 [file] [log] [blame]
Austin Schuhc682d612013-03-03 14:32:52 -08001#include "frc971/control_loops/shooter/shooter.h"
James Kuszmaulcdd033e2013-03-02 15:10:43 -08002
Brian Silverman14fd0fb2014-01-14 21:42:01 -08003#include "aos/linux_code/init.h"
James Kuszmaulcdd033e2013-03-02 15:10:43 -08004
Austin Schuh0e38a5d2013-03-03 03:53:35 -08005int main() {
6 ::aos::Init();
7 frc971::control_loops::ShooterMotor shooter;
8 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}