blob: c52db737314821edd95d8d1767dfd7b5dca28a76 [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 Silverman598800f2013-05-09 17:08:42 -07003#include "aos/atom_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}