Subversion Repositories FlightCtrl

Rev

Rev 2048 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1775 - 1
#ifndef _COMMANDS_H
2
#define _COMMANDS_H
3
 
4
#include <inttypes.h>
5
void commands_handleCommands(void);
6
 
7
/*
8
 * An enumeration over the  start motors, stop motors, calibrate gyros
9
 * and calibreate acc. meters commands.
10
 */
11
#define COMMAND_NONE    0
12
#define COMMAND_START   6
13
#define COMMAND_STOP    8
14
#define COMMAND_GYROCAL 2
15
#define COMMAND_ACCCAL  4
16
 
17
#endif