Subversion Repositories NaviCtrl

Rev

Rev 349 | Rev 351 | 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
//-----------------------
350 holgerb 12
//#define DEBUG 0
250 ingob 13
//-----------------------
14
 
41 ingob 15
#define VERSION_MAJOR   0
348 holgerb 16
#define VERSION_MINOR   27
17
#define VERSION_PATCH   0
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
350 holgerb 42
#define FC_SPI_COMPATIBLE               28
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
 
350 holgerb 94
//Parameter.GlobalConfig3
95
#define CFG3_NO_SDCARD_NO_START                 0x01
96
#define CFG3_DPH_MAX_RADIUS                     0x02
97
#define CFG3_VARIO_FAILSAFE                     0x04
98
 
320 holgerb 99
// Parameter.GlobalConfig
331 holgerb 100
#define FC_CFG_HOEHENREGELUNG           0x01
101
#define FC_CFG_HOEHEN_SCHALTER          0x02
102
#define FC_CFG_HEADING_HOLD             0x04
103
#define FC_CFG_KOMPASS_AKTIV            0x08
104
#define FC_CFG_KOMPASS_FIX              0x10
105
#define FC_CFG_GPS_AKTIV                0x20
106
#define FC_CFG_ACHSENKOPPLUNG_AKTIV     0x40
107
#define FC_CFG_DREHRATEN_BEGRENZER      0x80
190 killagreg 108
 
331 holgerb 109
//Parameter.ExtraConfig 
110
#define CFG2_HEIGHT_LIMIT                       0x01
111
#define CFG2_VARIO_BEEP                         0x02
112
#define CFG_SENSITIVE_RC                        0x04
113
#define CFG_3_3V_REFERENCE                      0x08
114
#define CFG_NO_RCOFF_BEEPING                    0x10
115
#define CFG_GPS_AID                             0x20
116
#define CFG_TEACHABLE_CAREFREE                  0x40
117
#define CFG_IGNORE_MAG_ERR_AT_STARTUP   0x80
320 holgerb 118
 
190 killagreg 119
#define LIMIT_MIN(value, min) {if(value <= min) value = min;}
120
#define LIMIT_MAX(value, max) {if(value >= max) value = max;}
121
#define LIMIT_MIN_MAX(value, min, max) {if(value <= min) value = min; else if(value >= max) value = max;}
122
 
327 holgerb 123
 
124
#define Poti1  FC.Poti[0]
125
#define Poti2  FC.Poti[1]
126
#define Poti3  FC.Poti[2]
127
#define Poti4  FC.Poti[3]
128
#define Poti5  FC.Poti[4]
129
#define Poti6  FC.Poti[5]
130
#define Poti7  FC.Poti[6]
131
#define Poti8  FC.Poti[7]
132
 
41 ingob 133
extern u16 BeepTime;
92 killagreg 134
extern u8  NCFlags;
255 killagreg 135
extern u8 ClearFCStatusFlags;
41 ingob 136
void Interrupt_Init(void);
153 killagreg 137
extern s16 GeoMagDec;
1 ingob 138
 
41 ingob 139
typedef struct
140
{
141
        u8 ActiveSetting;
142
        u8 User1;
143
        u8 User2;
144
        u8 User3;
145
        u8 User4;
146
        u8 User5;
147
        u8 User6;
148
        u8 User7;
149
        u8 User8;
150
        u8 NaviGpsModeControl;
151
        u8 NaviGpsGain;
152
        u8 NaviGpsP;
153
        u8 NaviGpsI;
154
        u8 NaviGpsD;
56 holgerb 155
        u8 NaviGpsPLimit;
156
        u8 NaviGpsILimit;
157
        u8 NaviGpsDLimit;
41 ingob 158
        u8 NaviGpsACC;
159
        u8 NaviGpsMinSat;
160
        u8 NaviStickThreshold;
161
        u8 NaviOperatingRadius;
162
        u8 NaviWindCorrection;
327 holgerb 163
        u8 NaviAccCompensation;
41 ingob 164
        u8 NaviSpeedCompensation;
165
        u8 LowVoltageWarning;
166
        u8 NaviAngleLimitation;
56 holgerb 167
        u8 NaviPH_LoginTime;
320 holgerb 168
        u8 OrientationAngle;
169
        u8 GlobalConfig;
170
        u8 ExtraConfig;
321 holgerb 171
        u8 ComingHomeAltitude;
350 holgerb 172
        u8 GlobalConfig3;
41 ingob 173
} __attribute__((packed)) Param_t;
1 ingob 174
 
41 ingob 175
typedef struct
176
{
177
        s8 StickNick;
178
        s8 StickRoll;
179
        s8 StickYaw;
180
        s8 StickGas;
190 killagreg 181
        u8 Poti[8];
41 ingob 182
        u8 RC_Quality;
125 killagreg 183
        u8 RC_RSSI;
206 killagreg 184
        u8 BAT_Voltage;
185
        u16 BAT_Current;
186
        u16 BAT_UsedCapacity;
255 killagreg 187
        u8 StatusFlags;
188
        u8 Error[5];
294 holgerb 189
        u8 StatusFlags2;
41 ingob 190
} __attribute__((packed)) FC_t;
1 ingob 191
 
242 killagreg 192
 
41 ingob 193
extern Param_t Parameter;
78 holgerb 194
extern volatile FC_t FC;
41 ingob 195
extern s8 ErrorMSG[25];
241 killagreg 196
extern u8 ErrorCode;
41 ingob 197
extern u8 StopNavigation;
328 holgerb 198
extern u8 ErrorGpsFixLost;
41 ingob 199
#endif // _MAIN_H