blob: 5bdab41b68ece50642fc8a4e5298f034f65b8e7f [file] [log] [blame]
#include "aos/events/shm_event_loop.h"
#include "aos/init.h"
#include "y2022/localizer/imu.h"
DEFINE_string(config, "aos_config.json", "Path to the config file to use.");
int main(int argc, char *argv[]) {
aos::InitGoogle(&argc, &argv);
aos::FlatbufferDetachedBuffer<aos::Configuration> config =
aos::configuration::ReadConfig(FLAGS_config);
aos::ShmEventLoop event_loop(&config.message());
y2022::localizer::Imu imu(&event_loop);
event_loop.Run();
return 0;
}