blob: 789f13f89370536f7676e047122d6c5cd1d10f2f [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);
event_loop.Run();
::aos::Cleanup();
return 0;
}