blob: 85851805026235f3cb8ab5df9d4b15608539f618 [file] [log] [blame]
#include "frc971/control_loops/wrist/wrist.h"
#include "aos/aos_core.h"
int main() {
::aos::Init();
frc971::control_loops::WristMotor wrist;
wrist.Run();
::aos::Cleanup();
return 0;
}