blob: c5422688321d7ea368194401bb53f77f136c9a18 [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 Silverman598800f2013-05-09 17:08:42 -07003#include "aos/atom_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}