blob: 1dbb3422c22ef03ea89fd2c69827f28cad924a42 [file] [log] [blame]
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08001#include "y2017/control_loops/superstructure/superstructure.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"
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08005
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 ::y2017::control_loops::superstructure::Superstructure superstructure(
11 &event_loop);
Austin Schuh9fe68f72019-08-10 19:32:03 -070012
13 event_loop.Run();
14
Austin Schuh7b9a3ba2017-02-19 23:11:45 -080015 ::aos::Cleanup();
16 return 0;
17}