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