blob: cd238a6545137101cbb21b8c3bcb7a09c7d6806f [file] [log] [blame]
#ifndef CAPE_ROBOT_H_
#define CAPE_ROBOT_H_
// This header file is for the robot-specific files which should be named
// robot_name.c. It documents what functions each robot should implement.
#include "cape/fill_packet.h"
// Has a default (weak empty) definition.
void robot_init(void);
void robot_fill_packet(struct DataStruct *packet);
#endif // CAPE_ROBOT_H_