blob: 3b7c1815dc7c5a64e01e227bdc2fc55823e25dd4 [file] [log] [blame]
Austin Schuh3bb9a442014-02-02 16:01:45 -08001#include "frc971/control_loops/claw/claw.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
7 frc971::control_loops::ClawMotor claw;
8 claw.Run();
9 ::aos::Cleanup();
10 return 0;
11}