blob: 6ebf91ad63886ad52a2a06b4f0cd9536c91f7745 [file] [log] [blame]
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08001#include "y2017/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"
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08005
6int main() {
7 ::aos::Init();
Austin Schuh55a13dc2019-01-27 22:39:03 -08008 ::aos::ShmEventLoop event_loop;
9 ::y2017::control_loops::superstructure::Superstructure superstructure(
10 &event_loop);
Austin Schuh7b9a3ba2017-02-19 23:11:45 -080011 superstructure.Run();
12 ::aos::Cleanup();
13 return 0;
14}