blob: 6b43d15a82c93d2e4a594221e047233294b5a5aa [file] [log] [blame]
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08001#include "y2017/control_loops/superstructure/superstructure.h"
2
Alex Perrycb7da4b2019-08-28 19:35:56 -07003#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() {
James Kuszmaulad8a8082020-02-14 21:21:58 -08007 ::aos::InitNRT();
Austin Schuh9fe68f72019-08-10 19:32:03 -07008
Alex Perrycb7da4b2019-08-28 19:35:56 -07009 aos::FlatbufferDetachedBuffer<aos::Configuration> config =
10 aos::configuration::ReadConfig("config.json");
11
12 ::aos::ShmEventLoop event_loop(&config.message());
Austin Schuh55a13dc2019-01-27 22:39:03 -080013 ::y2017::control_loops::superstructure::Superstructure superstructure(
14 &event_loop);
Austin Schuh9fe68f72019-08-10 19:32:03 -070015
16 event_loop.Run();
17
Austin Schuh7b9a3ba2017-02-19 23:11:45 -080018 ::aos::Cleanup();
19 return 0;
20}