blob: 5db852aa5e960de510e58b12a88eed7279b55058 [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
Austin Schuhdf6cbb12019-02-02 13:46:52 -08006#include "aos/robot_state/robot_state.q.h"
7
Brian Silverman811f8ec2015-12-06 01:29:42 -05008namespace frc971 {
9namespace wpilib {
10
11// Sends out a message on ::aos::robot_state.
Austin Schuhdf6cbb12019-02-02 13:46:52 -080012void PopulateRobotState(::aos::RobotState *robot_state, int32_t my_pid);
Brian Silverman811f8ec2015-12-06 01:29:42 -050013
14} // namespace wpilib
15} // namespace frc971
16
17#endif // FRC971_WPILIB_WPILIB_INTERFACE_H_