blob: 6d03678a68f0564b12ab13762df82eec2abaa180 [file] [log] [blame]
Austin Schuhd78ab542013-03-01 22:22:19 -08001#include "frc971/control_loops/wrist.h"
2
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}