blob: 435724b2d0fea8fa5733d09638b9233216fb21a5 [file] [log] [blame]
Comran Morshed25f81a02016-01-23 13:40:10 +00001#include "y2016/control_loops/superstructure/superstructure.h"
2
Austin Schuh55a13dc2019-01-27 22:39:03 -08003#include "aos/events/shm-event-loop.h"
John Park398c74a2018-10-20 21:17:39 -07004#include "aos/init.h"
Comran Morshed25f81a02016-01-23 13:40:10 +00005
6int main() {
7 ::aos::Init();
Austin Schuh55a13dc2019-01-27 22:39:03 -08008 ::aos::ShmEventLoop event_loop;
9 ::y2016::control_loops::superstructure::Superstructure superstructure(
10 &event_loop);
Comran Morshed25f81a02016-01-23 13:40:10 +000011 superstructure.Run();
12 ::aos::Cleanup();
13 return 0;
14}