blob: f5b026c0f2249c4936e968015b590e5fc243c2d2 [file] [log] [blame]
#include "y2018/control_loops/superstructure/superstructure.h"
#include "aos/events/shm-event-loop.h"
#include "aos/init.h"
int main() {
::aos::InitNRT(true);
::aos::ShmEventLoop event_loop;
::y2018::control_loops::superstructure::Superstructure superstructure(
&event_loop);
::aos::GoRT();
superstructure.Run();
::aos::Cleanup();
return 0;
}