Ben Fredrickson | 81ba2d5 | 2014-03-02 08:21:46 +0000 | [diff] [blame] | 1 | #include "stdio.h" |
| 2 | |
Ben Fredrickson | 81ba2d5 | 2014-03-02 08:21:46 +0000 | [diff] [blame] | 3 | #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 Kuszmaul | 18a5f1f | 2014-03-02 13:44:58 -0800 | [diff] [blame] | 7 | #include "frc971/actions/selfcatch_action.h" |
Ben Fredrickson | 81ba2d5 | 2014-03-02 08:21:46 +0000 | [diff] [blame] | 8 | |
| 9 | using ::aos::time::Time; |
| 10 | |
| 11 | int 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 | |