blob: a08074da3f461d6c00fff6bb45183ce6c458ec7e [file] [log] [blame]
Comran Morshed25f81a02016-01-23 13:40:10 +00001#include "y2016/control_loops/superstructure/superstructure.h"
2
John Park398c74a2018-10-20 21:17:39 -07003#include "aos/init.h"
Comran Morshed25f81a02016-01-23 13:40:10 +00004
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}