blob: f3f0ddd0eae52ed3ebb396a5bdc8f4bdf42f49e6 [file] [log] [blame]
James Kuszmaulf254c1a2013-03-10 16:31:26 -07001#include "frc971/control_loops/drivetrain/drivetrain.h"
2
Brian Silverman14fd0fb2014-01-14 21:42:01 -08003#include "aos/linux_code/init.h"
James Kuszmaulf254c1a2013-03-10 16:31:26 -07004
5int main() {
6 ::aos::Init();
7 frc971::control_loops::DrivetrainLoop drivetrain;
8 drivetrain.Run();
9 ::aos::Cleanup();
10 return 0;
11}