Comran Morshed | 9a9948c | 2016-01-16 15:58:04 +0000 | [diff] [blame] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_binary( |
| 4 | name = 'wpilib_interface', |
| 5 | srcs = [ |
| 6 | 'wpilib_interface.cc', |
| 7 | ], |
| 8 | deps = [ |
Comran Morshed | 9a9948c | 2016-01-16 15:58:04 +0000 | [diff] [blame] | 9 | '//aos/common:stl_mutex', |
| 10 | '//aos/common/logging', |
Austin Schuh | caa1ee9 | 2016-02-27 14:45:37 -0800 | [diff] [blame] | 11 | '//aos/common:math', |
Comran Morshed | 9a9948c | 2016-01-16 15:58:04 +0000 | [diff] [blame] | 12 | '//aos/common/controls:control_loop', |
| 13 | '//aos/common/util:log_interval', |
| 14 | '//aos/common:time', |
| 15 | '//aos/common/logging:queue_logging', |
| 16 | '//aos/common/messages:robot_state', |
| 17 | '//aos/common/util:phased_loop', |
| 18 | '//aos/common/util:wrapping_counter', |
Comran Morshed | 6c6a0a9 | 2016-01-17 12:45:16 +0000 | [diff] [blame] | 19 | '//aos/linux_code:init', |
Austin Schuh | 2a70f4b | 2016-11-25 23:05:57 -0800 | [diff] [blame] | 20 | '//third_party:wpilib', |
Comran Morshed | 6c6a0a9 | 2016-01-17 12:45:16 +0000 | [diff] [blame] | 21 | '//frc971/control_loops/drivetrain:drivetrain_queue', |
Comran Morshed | 225f0b9 | 2016-02-10 20:34:27 +0000 | [diff] [blame] | 22 | '//frc971/control_loops:queues', |
Comran Morshed | 9a9948c | 2016-01-16 15:58:04 +0000 | [diff] [blame] | 23 | '//frc971/wpilib:joystick_sender', |
| 24 | '//frc971/wpilib:loop_output_handler', |
| 25 | '//frc971/wpilib:buffered_pcm', |
| 26 | '//frc971/wpilib:gyro_sender', |
| 27 | '//frc971/wpilib:dma_edge_counting', |
| 28 | '//frc971/wpilib:interrupt_edge_counting', |
| 29 | '//frc971/wpilib:wpilib_robot_base', |
| 30 | '//frc971/wpilib:encoder_and_potentiometer', |
Comran Morshed | 9a9948c | 2016-01-16 15:58:04 +0000 | [diff] [blame] | 31 | '//frc971/wpilib:logging_queue', |
| 32 | '//frc971/wpilib:wpilib_interface', |
| 33 | '//frc971/wpilib:pdp_fetcher', |
Brian Silverman | 5f17a97 | 2016-02-28 01:49:32 -0500 | [diff] [blame] | 34 | '//frc971/wpilib:ADIS16448', |
Brian Silverman | b5b46ca | 2016-03-13 01:14:17 -0500 | [diff] [blame] | 35 | '//frc971/wpilib:dma', |
Comran Morshed | 6c6a0a9 | 2016-01-17 12:45:16 +0000 | [diff] [blame] | 36 | '//y2016:constants', |
Comran Morshed | 5bb1211 | 2016-02-16 13:48:57 +0000 | [diff] [blame] | 37 | '//y2016/control_loops/drivetrain:polydrivetrain_plants', |
Comran Morshed | 225f0b9 | 2016-02-10 20:34:27 +0000 | [diff] [blame] | 38 | '//y2016/control_loops/shooter:shooter_queue', |
| 39 | '//y2016/control_loops/superstructure:superstructure_queue', |
Comran Morshed | aa0573c | 2016-03-05 19:05:54 +0000 | [diff] [blame] | 40 | '//y2016/queues:ball_detector', |
Brian Silverman | 68cb5c2 | 2016-03-20 18:11:14 -0700 | [diff] [blame] | 41 | '//y2016/actors:autonomous_action_queue', |
Comran Morshed | 9a9948c | 2016-01-16 15:58:04 +0000 | [diff] [blame] | 42 | ], |
| 43 | ) |