blob: 321d74c829e58e2fd4ede9c34b36888ceadd7f74 [file] [log] [blame]
Austin Schuh00558222013-03-03 14:16:16 -08001#include "frc971/control_loops/index/index.h"
Austin Schuhd78ab542013-03-01 22:22:19 -08002
Brian Silverman14fd0fb2014-01-14 21:42:01 -08003#include "aos/linux_code/init.h"
Austin Schuhd78ab542013-03-01 22:22:19 -08004
5int main() {
6 ::aos::Init();
Austin Schuhf8c52252013-03-03 02:25:49 -08007 frc971::control_loops::IndexMotor indexer;
8 indexer.Run();
Austin Schuhd78ab542013-03-01 22:22:19 -08009 ::aos::Cleanup();
10 return 0;
11}