blob: 29fc74417e2ef651366593dd59911a87f25bbd3b [file] [log] [blame]
James Kuszmaulc0568f22014-03-05 20:33:00 -08001#include "stdio.h"
2
3#include "aos/common/control_loop/Timing.h"
4#include "aos/common/time.h"
5#include "aos/linux_code/init.h"
6#include "aos/common/logging/logging.h"
7#include "frc971/actions/catch_action.q.h"
8#include "frc971/actions/catch_action.h"
9
10using ::aos::time::Time;
11
12int main(int /*argc*/, char * /*argv*/ []) {
13 ::aos::Init();
14
15 frc971::actions::CatchAction action_catch(
16 &::frc971::actions::catch_action);
17 action_catch.Run();
18
19 ::aos::Cleanup();
20 return 0;
21}
22