Subversion Repositories FlightCtrl

Compare Revisions

Ignore whitespace Rev 2099 → Rev 2098

/branches/dongfang_FC_fixedwing/commands.h
2,13 → 2,16
#define _COMMANDS_H
 
#include <inttypes.h>
void commands_handleCommands(void);
 
/*
* An enumeration over the start motors, stop motors, calibrate gyros
* and calibreate acc. meters commands.
*/
#define COMMAND_NONE 0
#define COMMAND_GYROCAL 1
#define COMMAND_START 6
#define COMMAND_STOP 8
#define COMMAND_GYROCAL 2
#define COMMAND_ACCCAL 4
 
void commands_handleCommands(void);
 
#endif