Subversion Repositories NaviCtrl

Rev

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