blob: f4987fb85e272302db6edaa3fa784b45d23d8791 [file] [log] [blame]
Comran Morshed25f81a02016-01-23 13:40:10 +00001#include "y2016/control_loops/superstructure/superstructure.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
Austin Schuh2fc10fa2016-02-08 00:44:34 -08007 ::y2016::control_loops::superstructure::Superstructure superstructure;
Comran Morshed25f81a02016-01-23 13:40:10 +00008 superstructure.Run();
9 ::aos::Cleanup();
10 return 0;
11}