Subversion Repositories FlightCtrl

Rev

Rev 1910 | Rev 2102 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef _COMMANDS_H
#define _COMMANDS_H

#include <inttypes.h>
/*
 * An enumeration over the  start motors, stop motors, calibrate gyros
 * and calibreate acc. meters commands.
 */

#define COMMAND_NONE    0
#define COMMAND_GYROCAL 1

void commands_handleCommands(void);

#endif