Subversion Repositories NaviCtrl

Rev

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

Rev Author Line No. Line
41 ingob 1
#ifndef _MAIN_H
2
#define _MAIN_H
1 ingob 3
 
314 killagreg 4
 
318 holgerb 5
//#define FOLLOW_ME
314 killagreg 6
 
7
#ifdef FOLLOW_ME
8
extern u8 TransmitAlsoToFC;
9
#endif
10
 
250 ingob 11
//-----------------------
256 killagreg 12
//#define DEBUG 0
250 ingob 13
//-----------------------
14
 
41 ingob 15
#define VERSION_MAJOR   0
339 holgerb 16
#define VERSION_MINOR   26
345 holgerb 17
#define VERSION_PATCH   5
283 holgerb 18
// 0 = A
19
// 1 = B
20
// 2 = C
21
// 3 = D
22
// 4 = E
23
// 5 = F
24
// 6 = G
25
// 7 = H
26
// 8 = I
287 holgerb 27
// 9 = J
290 holgerb 28
// 10 = k
291 holgerb 29
// 11 = L
294 holgerb 30
// 12 = M
298 holgerb 31
// 13 = N
338 holgerb 32
// 14 = O
33
// 15 = P
34
// 16 = Q
35
// 17 = R
339 holgerb 36
// 18 = S
1 ingob 37
 
193 killagreg 38
#define VERSION_SERIAL_MAJOR    11
39
#define VERSION_SERIAL_MINOR    0
73 killagreg 40
 
317 holgerb 41
#ifndef FOLLOW_ME
342 holgerb 42
#define FC_SPI_COMPATIBLE               27
317 holgerb 43
#else
316 killagreg 44
#define FC_SPI_COMPATIBLE               0xFF
45
#endif
46
 
229 holgerb 47
#define MK3MAG_I2C_COMPATIBLE   3
241 killagreg 48
 
320 holgerb 49
// FC.StatusFlags
255 killagreg 50
#define FC_STATUS_MOTOR_RUN                             0x01
51
#define FC_STATUS_FLY                                   0x02
52
#define FC_STATUS_CALIBRATE                             0x04
53
#define FC_STATUS_START                                 0x08
54
#define FC_STATUS_EMERGENCY_LANDING             0x10
55
#define FC_STATUS_LOWBAT                                0x20
279 holgerb 56
#define FC_STATUS_VARIO_TRIM_UP                 0x40
57
#define FC_STATUS_VARIO_TRIM_DOWN               0x80
78 holgerb 58
 
320 holgerb 59
// FC.StatusFlags2
294 holgerb 60
#define FC_STATUS2_CAREFREE                 0x01
61
#define FC_STATUS2_ALTITUDE_CONTROL         0x02
322 holgerb 62
#define FC_STATUS2_RC_FAILSAVE_ACTIVE       0x04
294 holgerb 63
 
64
 
255 killagreg 65
// FC ERRORS FLAGS
66
#define FC_ERROR0_GYRO_NICK     0x01
67
#define FC_ERROR0_GYRO_ROLL     0x02
68
#define FC_ERROR0_GYRO_YAW              0x04
69
#define FC_ERROR0_ACC_NICK              0x08
70
#define FC_ERROR0_ACC_ROLL              0x10
71
#define FC_ERROR0_ACC_TOP               0x20
72
#define FC_ERROR0_PRESSURE              0x40
73
#define FC_ERROR0_CAREFREE              0x80
74
 
75
#define FC_ERROR1_I2C                   0x01
76
#define FC_ERROR1_BL_MISSING    0x02
77
#define FC_ERROR1_SPI_RX                0x04
78
#define FC_ERROR1_PPM                   0x08
79
#define FC_ERROR1_MIXER                 0x10
80
#define FC_ERROR1_RES1                  0x20
81
#define FC_ERROR1_RES2                  0x40
82
#define FC_ERROR1_RES3                  0x80
83
 
146 killagreg 84
// NC Errors
85
#define NCERR_FLAG_FC_COMPATIBLE                        0x00000001
86
#define NCERR_FLAG_MK3MAG_COMPATIBLE            0x00000002
87
#define NCERR_FLAG_FC_COMMUNICATION                     0x00000004
88
#define NCERR_FLAG_MK3MAG_COMMUNICATION         0x00000008
89
#define NCERR_FLAG_MKGPS_COMMUNICATION          0x00000010
90
#define NCERR_FLAG_BAD_COMPASS_HEADING          0x00000020
91
#define NCERR_FLAG_RC_SIGNAL_LOST                       0x00000040
264 killagreg 92
#define NCERR_FLAG_EEPROM_NOT_FOUND                     0x00000080
49 ingob 93
 
320 holgerb 94
// Parameter.GlobalConfig
331 holgerb 95
#define FC_CFG_HOEHENREGELUNG           0x01
96
#define FC_CFG_HOEHEN_SCHALTER          0x02
97
#define FC_CFG_HEADING_HOLD             0x04
98
#define FC_CFG_KOMPASS_AKTIV            0x08
99
#define FC_CFG_KOMPASS_FIX              0x10
100
#define FC_CFG_GPS_AKTIV                0x20
101
#define FC_CFG_ACHSENKOPPLUNG_AKTIV     0x40
102
#define FC_CFG_DREHRATEN_BEGRENZER      0x80
190 killagreg 103
 
331 holgerb 104
//Parameter.ExtraConfig 
105
#define CFG2_HEIGHT_LIMIT                       0x01
106
#define CFG2_VARIO_BEEP                         0x02
107
#define CFG_SENSITIVE_RC                        0x04
108
#define CFG_3_3V_REFERENCE                      0x08
109
#define CFG_NO_RCOFF_BEEPING                    0x10
110
#define CFG_GPS_AID                             0x20
111
#define CFG_TEACHABLE_CAREFREE                  0x40
112
#define CFG_IGNORE_MAG_ERR_AT_STARTUP   0x80
320 holgerb 113
 
190 killagreg 114
#define LIMIT_MIN(value, min) {if(value <= min) value = min;}
115
#define LIMIT_MAX(value, max) {if(value >= max) value = max;}
116
#define LIMIT_MIN_MAX(value, min, max) {if(value <= min) value = min; else if(value >= max) value = max;}
117
 
327 holgerb 118
 
119
#define Poti1  FC.Poti[0]
120
#define Poti2  FC.Poti[1]
121
#define Poti3  FC.Poti[2]
122
#define Poti4  FC.Poti[3]
123
#define Poti5  FC.Poti[4]
124
#define Poti6  FC.Poti[5]
125
#define Poti7  FC.Poti[6]
126
#define Poti8  FC.Poti[7]
127
 
41 ingob 128
extern u16 BeepTime;
92 killagreg 129
extern u8  NCFlags;
255 killagreg 130
extern u8 ClearFCStatusFlags;
41 ingob 131
void Interrupt_Init(void);
153 killagreg 132
extern s16 GeoMagDec;
1 ingob 133
 
41 ingob 134
typedef struct
135
{
136
        u8 ActiveSetting;
137
        u8 User1;
138
        u8 User2;
139
        u8 User3;
140
        u8 User4;
141
        u8 User5;
142
        u8 User6;
143
        u8 User7;
144
        u8 User8;
145
        u8 NaviGpsModeControl;
146
        u8 NaviGpsGain;
147
        u8 NaviGpsP;
148
        u8 NaviGpsI;
149
        u8 NaviGpsD;
56 holgerb 150
        u8 NaviGpsPLimit;
151
        u8 NaviGpsILimit;
152
        u8 NaviGpsDLimit;
41 ingob 153
        u8 NaviGpsACC;
154
        u8 NaviGpsMinSat;
155
        u8 NaviStickThreshold;
156
        u8 NaviOperatingRadius;
157
        u8 NaviWindCorrection;
327 holgerb 158
        u8 NaviAccCompensation;
41 ingob 159
        u8 NaviSpeedCompensation;
160
        u8 LowVoltageWarning;
161
        u8 NaviAngleLimitation;
56 holgerb 162
        u8 NaviPH_LoginTime;
320 holgerb 163
        u8 OrientationAngle;
164
        u8 GlobalConfig;
165
        u8 ExtraConfig;
321 holgerb 166
        u8 ComingHomeAltitude;
41 ingob 167
} __attribute__((packed)) Param_t;
1 ingob 168
 
41 ingob 169
typedef struct
170
{
171
        s8 StickNick;
172
        s8 StickRoll;
173
        s8 StickYaw;
174
        s8 StickGas;
190 killagreg 175
        u8 Poti[8];
41 ingob 176
        u8 RC_Quality;
125 killagreg 177
        u8 RC_RSSI;
206 killagreg 178
        u8 BAT_Voltage;
179
        u16 BAT_Current;
180
        u16 BAT_UsedCapacity;
255 killagreg 181
        u8 StatusFlags;
182
        u8 Error[5];
294 holgerb 183
        u8 StatusFlags2;
41 ingob 184
} __attribute__((packed)) FC_t;
1 ingob 185
 
242 killagreg 186
 
41 ingob 187
extern Param_t Parameter;
78 holgerb 188
extern volatile FC_t FC;
41 ingob 189
extern s8 ErrorMSG[25];
241 killagreg 190
extern u8 ErrorCode;
41 ingob 191
extern u8 StopNavigation;
328 holgerb 192
extern u8 ErrorGpsFixLost;
41 ingob 193
#endif // _MAIN_H