Subversion Repositories FlightCtrl

Rev

Rev 2109 | 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>
2109 - 5
 
1910 - 6
#define COMMAND_NONE    0
2099 - 7
#define COMMAND_GYROCAL 1
2124 - 8
#define COMMAND_RCCAL   2
9
#define COMMAND_CHMOD   3
1910 - 10
 
2099 - 11
void commands_handleCommands(void);
12
 
1910 - 13
#endif