blob: fe7be094141b7e471e12174c94cc6720b87f6b47 [file] [log] [blame]
Tyler Chatowe51334a2019-01-20 16:58:16 -08001#include "y2019/control_loops/superstructure/superstructure.h"
2
Austin Schuh55a13dc2019-01-27 22:39:03 -08003#include "aos/events/shm-event-loop.h"
Tyler Chatowe51334a2019-01-20 16:58:16 -08004#include "aos/init.h"
5
6int main() {
7 ::aos::Init();
Austin Schuh55a13dc2019-01-27 22:39:03 -08008 ::aos::ShmEventLoop event_loop;
9 ::y2019::control_loops::superstructure::Superstructure superstructure(
10 &event_loop);
Tyler Chatowe51334a2019-01-20 16:58:16 -080011 superstructure.Run();
12 ::aos::Cleanup();
13 return 0;
14}