Sabina Davis | 8d20ca8 | 2018-02-19 13:17:45 -0800 | [diff] [blame] | 1 | #include "y2018/control_loops/superstructure/superstructure.h" |
| 2 | |
| 3 | #include "aos/linux_code/init.h" |
| 4 | |
| 5 | int main() { |
Brian Silverman | 8f8debf | 2018-03-11 19:30:23 -0700 | [diff] [blame] | 6 | ::aos::InitNRT(true); |
Sabina Davis | 8d20ca8 | 2018-02-19 13:17:45 -0800 | [diff] [blame] | 7 | ::y2018::control_loops::superstructure::Superstructure superstructure; |
Brian Silverman | 8f8debf | 2018-03-11 19:30:23 -0700 | [diff] [blame] | 8 | ::aos::GoRT(); |
Sabina Davis | 8d20ca8 | 2018-02-19 13:17:45 -0800 | [diff] [blame] | 9 | superstructure.Run(); |
| 10 | ::aos::Cleanup(); |
| 11 | return 0; |
| 12 | } |