blob: 9ca32904363f2535487ef2d679a7bc4a7654282d [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
3#include "aos/aos_core.h"
4
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}