Subversion Repositories FlightCtrl

Rev

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

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