blob: 0c0b66d6d67eddc9bc45f029ecb97f7ba0cdb039 [file] [log] [blame]
Austin Schuhdc1c84a2013-02-23 16:33:10 -08001#include "frc971/control_loops/wrist.h"
2
3#include "aos/aos_core.h"
4
Austin Schuh30efeb72013-02-24 02:06:36 -08005int main() {
6 ::aos::Init();
7 frc971::control_loops::WristMotor wrist;
Austin Schuh464ee1a2013-03-01 22:37:39 -08008 wrist.Run();
Austin Schuh30efeb72013-02-24 02:06:36 -08009 ::aos::Cleanup();
10 return 0;
11}