blob: a7b60f93a9ee3999f2366b3711c48ec1641f5da7 [file] [log] [blame]
Brian Silverman17f503e2015-08-02 18:17:18 -07001#include "y2014/control_loops/shooter/shooter.h"
2
Austin Schuh55a13dc2019-01-27 22:39:03 -08003#include "aos/events/shm-event-loop.h"
John Park398c74a2018-10-20 21:17:39 -07004#include "aos/init.h"
Brian Silverman17f503e2015-08-02 18:17:18 -07005
6int main() {
7 ::aos::Init();
Austin Schuh55a13dc2019-01-27 22:39:03 -08008 ::aos::ShmEventLoop event_loop;
9 ::y2014::control_loops::ShooterMotor shooter(&event_loop);
Brian Silverman17f503e2015-08-02 18:17:18 -070010 shooter.Run();
11 ::aos::Cleanup();
12 return 0;
13}