blob: b9737fd7238267111e19a951347ca078cdeb6658 [file] [log] [blame]
Comran Morshed2a97bc82016-01-16 17:27:01 +00001#include "y2016/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"
Comran Morshed2a97bc82016-01-16 17:27:01 +00005
6int main() {
Austin Schuh9fe68f72019-08-10 19:32:03 -07007 ::aos::InitNRT(true);
8
Austin Schuh55a13dc2019-01-27 22:39:03 -08009 ::aos::ShmEventLoop event_loop;
10 ::y2016::control_loops::shooter::Shooter shooter(&event_loop);
Austin Schuh9fe68f72019-08-10 19:32:03 -070011
12 event_loop.Run();
13
Comran Morshed2a97bc82016-01-16 17:27:01 +000014 ::aos::Cleanup();
15 return 0;
16}