blob: 82936ec6f2c4044c057b054be70801d746e418d6 [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
Brian Silverman425492b2015-12-30 15:23:55 -080011class PDPFetcher;
12
Brian Silverman811f8ec2015-12-06 01:29:42 -050013// Sends out a message on ::aos::robot_state.
Brian Silvermanc7e8fdd2015-12-06 02:48:27 -050014void SendRobotState(int32_t my_pid, DriverStation *ds,
Brian Silverman425492b2015-12-30 15:23:55 -080015 PDPFetcher *pdp_fetcher);
Brian Silverman811f8ec2015-12-06 01:29:42 -050016
17} // namespace wpilib
18} // namespace frc971
19
20#endif // FRC971_WPILIB_WPILIB_INTERFACE_H_