blob: 216bf099d928e99a7f72793d5e05fcf64b9b4a0b [file] [log] [blame]
Brian Silverman811f8ec2015-12-06 01:29:42 -05001#ifndef FRC971_WPILIB_WPILIB_INTERFACE_H_
2#define FRC971_WPILIB_WPILIB_INTERFACE_H_
3
4#include <stdint.h>
5
6class DriverStation;
7
8namespace frc971 {
9namespace wpilib {
10
11// Sends out a message on ::aos::robot_state.
12void SendRobotState(int32_t my_pid, DriverStation *ds);
13
14} // namespace wpilib
15} // namespace frc971
16
17#endif // FRC971_WPILIB_WPILIB_INTERFACE_H_