blob: dd483659b2ed0c95eff8bc4ee3c0dc221d626df0 [file] [log] [blame]
Ben Fredrickson81ba2d52014-03-02 08:21:46 +00001#include "stdio.h"
2
Ben Fredrickson81ba2d52014-03-02 08:21:46 +00003#include "aos/common/time.h"
4#include "aos/linux_code/init.h"
5#include "aos/common/logging/logging.h"
6#include "frc971/actions/selfcatch_action.q.h"
James Kuszmaul18a5f1f2014-03-02 13:44:58 -08007#include "frc971/actions/selfcatch_action.h"
Ben Fredrickson81ba2d52014-03-02 08:21:46 +00008
9using ::aos::time::Time;
10
11int main(int /*argc*/, char * /*argv*/ []) {
12 ::aos::Init();
13
14 frc971::actions::SelfCatchAction selfcatch(
15 &::frc971::actions::selfcatch_action);
16 selfcatch.Run();
17
18 ::aos::Cleanup();
19 return 0;
20}
21