blob: 27520c11cc14471704478520ed3023258479bd1e [file] [log] [blame]
Tyler Chatowe51334a2019-01-20 16:58:16 -08001#include "y2019/control_loops/superstructure/superstructure.h"
2
Austin Schuh55a13dc2019-01-27 22:39:03 -08003#include "aos/events/shm-event-loop.h"
Tyler Chatowe51334a2019-01-20 16:58:16 -08004#include "aos/init.h"
5
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 ::y2019::control_loops::superstructure::Superstructure superstructure(
11 &event_loop);
Austin Schuh9fe68f72019-08-10 19:32:03 -070012
13 event_loop.Run();
14
Tyler Chatowe51334a2019-01-20 16:58:16 -080015 ::aos::Cleanup();
16 return 0;
17}