blob: 02da3e2ec9a8cb5c081d0c2b6a1260e8aa1981ff [file] [log] [blame]
Brian Silvermanc58872f2013-12-15 16:27:53 -08001#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
9void robot_fill_packet(struct DataStruct *packet);
10
11#endif // CAPE_ROBOT_H_