blob: cd238a6545137101cbb21b8c3bcb7a09c7d6806f [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
Brian Silverman78670262014-01-17 23:40:47 -08009// Has a default (weak empty) definition.
10void robot_init(void);
11
Brian Silvermanc58872f2013-12-15 16:27:53 -080012void robot_fill_packet(struct DataStruct *packet);
13
14#endif // CAPE_ROBOT_H_