Brian Silverman | 811f8ec | 2015-12-06 01:29:42 -0500 | [diff] [blame] | 1 | #ifndef FRC971_WPILIB_WPILIB_INTERFACE_H_ |
| 2 | #define FRC971_WPILIB_WPILIB_INTERFACE_H_ |
| 3 | |
| 4 | #include <stdint.h> |
| 5 | |
| 6 | class DriverStation; |
| 7 | |
| 8 | namespace frc971 { |
| 9 | namespace wpilib { |
| 10 | |
| 11 | // Sends out a message on ::aos::robot_state. |
Brian Silverman | 39b339e | 2016-01-03 13:24:22 -0800 | [diff] [blame^] | 12 | void SendRobotState(int32_t my_pid, DriverStation *ds); |
Brian Silverman | 811f8ec | 2015-12-06 01:29:42 -0500 | [diff] [blame] | 13 | |
| 14 | } // namespace wpilib |
| 15 | } // namespace frc971 |
| 16 | |
| 17 | #endif // FRC971_WPILIB_WPILIB_INTERFACE_H_ |