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