Daniel Petti | b0733be | 2014-11-14 22:44:03 -0800 | [diff] [blame^] | 1 | #include <stdio.h> |
2 | |||||
3 | #include "aos/linux_code/init.h" | ||||
4 | #include "aos/common/logging/logging.h" | ||||
5 | #include "bot3/actions/drivetrain_action.h" | ||||
6 | #include "frc971/actions/drivetrain_action.q.h" | ||||
7 | |||||
8 | using ::aos::time::Time; | ||||
9 | |||||
10 | int main(int /*argc*/, char * /*argv*/[]) { | ||||
11 | ::aos::Init(); | ||||
12 | |||||
13 | bot3::actions::DrivetrainAction drivetrain(&::frc971::actions::drivetrain_action); | ||||
14 | drivetrain.Run(); | ||||
15 | |||||
16 | ::aos::Cleanup(); | ||||
17 | return 0; | ||||
18 | } | ||||
19 |