Brian Silverman | c58872f | 2013-12-15 16:27:53 -0800 | [diff] [blame^] | 1 | #ifndef CAPE_ROBOT_H_ |
2 | #define CAPE_ROBOT_H_ | ||||
3 | |||||
4 | // This header file is for the robot-specific files which should be named | ||||
5 | // robot_name.c. It documents what functions each robot should implement. | ||||
6 | |||||
7 | #include "cape/fill_packet.h" | ||||
8 | |||||
9 | void robot_fill_packet(struct DataStruct *packet); | ||||
10 | |||||
11 | #endif // CAPE_ROBOT_H_ |