MAV'RIC
conf_platform.h
1 /*
2  * conf_platform.h
3  *
4  * Created: 07/06/2012 22:02:26
5  * Author: sfx
6  */
7 
8 
9 #ifndef CONF_PLATFORM_H_
10 #define CONF_PLATFORM_H_
11 
12 //#include "conf_imu_rev3.h"
13 #include "conf_imu_rev4.h"
14 
15 #define MAVLINK_SYS_ID 9
16 
17 
18 // Definitions of Platform configuration
19 #define M_REAR_LEFT 0
20 #define M_FRONT_LEFT 1
21 #define M_FRONT_RIGHT 2
22 #define M_REAR_RIGHT 3
23 
24 #define M_FR_DIR ( 1)
25 #define M_FL_DIR (-1)
26 #define M_RR_DIR (-1)
27 #define M_RL_DIR ( 1)
28 
29 #define M_FRONT 0
30 #define M_RIGHT 1
31 #define M_REAR 2
32 #define M_LEFT 3
33 
34 #define M_FRONT_DIR ( 1)
35 #define M_RIGHT_DIR (-1)
36 #define M_REAR_DIR ( 1)
37 #define M_LEFT_DIR (-1)
38 
39 #define MIN_THRUST -0.9
40 #define MAX_THRUST 1.0
41 
42 #endif /* CONF_PLATFORM_H_ */