blob: e8e1c7be9d10974f03434d0b111150fa08fde8bc [file] [log] [blame]
Sabina Davis8d20ca82018-02-19 13:17:45 -08001#include "y2018/control_loops/superstructure/superstructure.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
Brian Silverman8f8debf2018-03-11 19:30:23 -07006 ::aos::InitNRT(true);
Sabina Davis8d20ca82018-02-19 13:17:45 -08007 ::y2018::control_loops::superstructure::Superstructure superstructure;
Brian Silverman8f8debf2018-03-11 19:30:23 -07008 ::aos::GoRT();
Sabina Davis8d20ca82018-02-19 13:17:45 -08009 superstructure.Run();
10 ::aos::Cleanup();
11 return 0;
12}