Subversion Repositories NaviCtrl

Rev

Rev 809 | 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
//-----------------------
434 holgerb 12
//#define DEBUG 0
250 ingob 13
//-----------------------
14
 
458 holgerb 15
#define VERSION_MAJOR   2
810 holgerb 16
#define VERSION_MINOR   18
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
 
766 holgerb 38
#define CAN_SLAVE_COMPATIBLE     2
317 holgerb 39
#ifndef FOLLOW_ME
799 holgerb 40
#define FC_SPI_COMPATIBLE               85      //   <------------------
317 holgerb 41
#else
316 killagreg 42
#define FC_SPI_COMPATIBLE               0xFF
43
#endif
44
 
229 holgerb 45
#define MK3MAG_I2C_COMPATIBLE   3
607 holgerb 46
#define MAX_MOTORS 16     // since 2.10 (3.2014)
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
360 holgerb 62
#define FC_STATUS2_OUT1_ACTIVE                  0x08
63
#define FC_STATUS2_OUT2_ACTIVE                  0x10
447 holgerb 64
#define FC_STATUS2_WAIT_FOR_TAKEOFF             0x20   // Motor Running, but still on the ground
699 holgerb 65
#define FC_STATUS2_AUTO_STARTING                0x40
66
#define FC_STATUS2_AUTO_LANDING                 0x80
294 holgerb 67
 
573 holgerb 68
// FC.StatusFlags3 
616 holgerb 69
#define FC_STATUS3_REDUNDANCE_AKTIVE        0x01
573 holgerb 70
#define FC_STATUS3_BOAT                         0x02
616 holgerb 71
#define FC_STATUS3_REDUNDANCE_ERROR                     0x04
72
#define FC_STATUS3_REDUNDANCE_TEST                      0x08
699 holgerb 73
#define FC_STATUS3_NOT_CALIBRATED                       0x10
74
#define FC_STATUS3_MOTORS_STOPPED_BY_RC         0x20
573 holgerb 75
 
788 holgerb 76
 
77
// xxx.OSDStatusFlags   (multiple data sets)    -> this is the definition in the OSD data structure 
78
#define OSD_FLAG_CAREFREE                       0x01
79
#define OSD_FLAG_ALTITUDE_CONTROL               0x02
80
#define OSD_FLAG_CALIBRATE                              0x04
81
#define OSD_FLAG_OUT1_ACTIVE                            0x08
82
#define OSD_FLAG_OUT2_ACTIVE                            0x10
83
#define OSD_FLAG_LOWBAT                                 0x20
84
#define OSD_FLAG_VARIO_TRIM_UP                  0x40
85
#define OSD_FLAG_VARIO_TRIM_DOWN                0x80
86
 
87
// NaviData_Flags.OSDStatusFlags2 (Index:11)    -> this is the definition in the OSD data structure 
88
#define OSD2_FLAG_MOTOR_RUN                             0x01
89
#define OSD2_FLAG_FLY                                   0x02
90
#define OSD2_FLAG_RC_FAILSAVE_ACTIVE        0x04
91
#define OSD2_FLAG_START                                 0x08
92
#define OSD2_FLAG_EMERGENCY_LANDING             0x10
93
#define OSD2_FLAG_WAIT_FOR_TAKEOFF              0x20   // Motor Running, but still on the ground
94
#define OSD2_FLAG_AUTO_STARTING                 0x40
95
#define OSD2_FLAG_AUTO_LANDING                  0x80
96
 
807 holgerb 97
// NaviData_Home.OSDStatusFlags3 (Index:13 Home-Position) -> use only for flags that change slowly 
98
#define OSD_FIX_NONE                                                    0
99
#define OSD_FIX_2D                                                              1
100
#define OSD_FIX_3D                                                              2
101
#define OSD_FIX_DGPS                                                    3
102
#define OSD_FIX_RTK_FLOAT                                               4
103
#define OSD_FIX_RTK_FIX                                                 5
788 holgerb 104
 
807 holgerb 105
#define OSD3_FLAG_FIXBIT0                                       0x01
106
#define OSD3_FLAG_FIXBIT1                                       0x02
107
#define OSD3_FLAG_FIXBIT2                                       0x04
108
#define OSD3_FLAG_HOTSHOE                                       0x08
109
#define OSD3_FLAG_BOAT_MODE                                     0x10
110
 
788 holgerb 111
// the OSD-Flags are built from the FC status flags. They are combined into new bytes to increse the efficiency in the data protocol
595 holgerb 112
#define OSD_FLAG_MASK1 (0x04 + 0x20 + 0x40 + 0x80)
113
#define OSD_FLAG_MASK2 (0x01 + 0x02 + 0x08 + 0x10)
114
 
788 holgerb 115
// NC calculates
116
//OSDStatusFlags = (FC.StatusFlags & OSD_FLAG_MASK1) | (FC.StatusFlags2 & OSD_FLAG_MASK2);
117
//OSDStatusFlags2 = (FC.StatusFlags & ~OSD_FLAG_MASK1) | (FC.StatusFlags2 & ~OSD_FLAG_MASK2);
118
 
119
//calculate Back:
120
//FC.StatusFlags = (OSDStatusFlags & OSD_FLAG_MASK1) | (OSDStatusFlags2 & ~OSD_FLAG_MASK1);
121
//FC.StatusFlags2 = (OSDStatusFlags & OSD_FLAG_MASK2) | (OSDStatusFlags2 & ~OSD_FLAG_MASK2);
122
 
123
 
595 holgerb 124
// .NCFlags
125
#define NC_FLAG_FREE                    0x01
126
#define NC_FLAG_PH                              0x02
127
#define NC_FLAG_CH                              0x04
128
#define NC_FLAG_RANGE_LIMIT             0x08
129
#define NC_FLAG_NOSERIALLINK    0x10
130
#define NC_FLAG_TARGET_REACHED  0x20
131
#define NC_FLAG_MANUAL_CONTROL  0x40
132
#define NC_FLAG_GPS_OK                  0x80
133
 
764 holgerb 134
//IO1_Function
135
#define IO1FUNC_PARACHUTE                       9
136
#define IO1FUNC_ERROR_PARACHUTE         255
595 holgerb 137
 
138
// NC calculates
139
//OSDStatusFlags = (FC.StatusFlags & OSD_FLAG_MASK1) | (FC.StatusFlags2 & OSD_FLAG_MASK2);
140
//OSDStatusFlags2 = (FC.StatusFlags & ~OSD_FLAG_MASK1) | (FC.StatusFlags2 & ~OSD_FLAG_MASK2);
141
 
142
//calculate Back:
143
//FC.StatusFlags = (OSDStatusFlags & OSD_FLAG_MASK1) | (OSDStatusFlags2 & ~OSD_FLAG_MASK1);
144
//FC.StatusFlags2 = (OSDStatusFlags & OSD_FLAG_MASK2) | (OSDStatusFlags2 & ~OSD_FLAG_MASK2);
145
 
707 holgerb 146
// FC.Error[0]
255 killagreg 147
#define FC_ERROR0_GYRO_NICK     0x01
148
#define FC_ERROR0_GYRO_ROLL     0x02
149
#define FC_ERROR0_GYRO_YAW              0x04
150
#define FC_ERROR0_ACC_NICK              0x08
151
#define FC_ERROR0_ACC_ROLL              0x10
152
#define FC_ERROR0_ACC_TOP               0x20
153
#define FC_ERROR0_PRESSURE              0x40
154
#define FC_ERROR0_CAREFREE              0x80
155
 
707 holgerb 156
// FC.Error[1]
255 killagreg 157
#define FC_ERROR1_I2C                   0x01
158
#define FC_ERROR1_BL_MISSING    0x02
159
#define FC_ERROR1_SPI_RX                0x04
160
#define FC_ERROR1_PPM                   0x08
161
#define FC_ERROR1_MIXER                 0x10
707 holgerb 162
#define FC_ERROR1_RC_VOLTAGE    0x20
163
#define FC_ERROR1_ACC_NOT_CAL   0x40
255 killagreg 164
#define FC_ERROR1_RES3                  0x80
165
 
146 killagreg 166
// NC Errors
167
#define NCERR_FLAG_FC_COMPATIBLE                        0x00000001
168
#define NCERR_FLAG_MK3MAG_COMPATIBLE            0x00000002
169
#define NCERR_FLAG_FC_COMMUNICATION                     0x00000004
170
#define NCERR_FLAG_MK3MAG_COMMUNICATION         0x00000008
171
#define NCERR_FLAG_MKGPS_COMMUNICATION          0x00000010
172
#define NCERR_FLAG_BAD_COMPASS_HEADING          0x00000020
173
#define NCERR_FLAG_RC_SIGNAL_LOST                       0x00000040
264 killagreg 174
#define NCERR_FLAG_EEPROM_NOT_FOUND                     0x00000080
49 ingob 175
 
625 holgerb 176
//NC_To_FC_Flags
781 holgerb 177
#define NC_TO_FC_FLYING_RANGE                           0x01
178
#define NC_TO_FC_EMERGENCY_LANDING                      0x02
179
#define NC_TO_FC_AUTOSTART                                      0x04
180
#define NC_TO_FC_FAILSAFE_LANDING                       0x08 // activates Servos
181
#define NC_TO_FC_SIMULATION_ACTIVE                      0x10 // don't start motors if simulation ist active
182
#define NC_TO_FC_SWITCHOFF_IF_LANDED            0x20 // switch off if MK is on the ground and doesn't further sink
799 holgerb 183
#define NC_TO_FC_OUTSIDE_FLYZONE                        0x40 // for the Beep-Signal
625 holgerb 184
 
350 holgerb 185
//Parameter.GlobalConfig3
186
#define CFG3_NO_SDCARD_NO_START                 0x01
764 holgerb 187
#define CFG3_RISE_FIRST_WAYPOINT                0x02
350 holgerb 188
#define CFG3_VARIO_FAILSAFE                     0x04
398 holgerb 189
#define CFG3_MOTOR_SWITCH_MODE                  0x08
190
#define CFG3_NO_GPSFIX_NO_START                 0x10
764 holgerb 191
#define CFG3_USE_NC_FOR_OUT1                    0x20
192
#define CFG3_SPEAK_ALL                          0x40
193
#define CFG3_SERVO_NICK_COMP_OFF                0x80
350 holgerb 194
 
799 holgerb 195
// Parameter.GlobalConfig 
331 holgerb 196
#define FC_CFG_HOEHENREGELUNG           0x01
197
#define FC_CFG_HOEHEN_SCHALTER          0x02
198
#define FC_CFG_HEADING_HOLD             0x04
199
#define FC_CFG_KOMPASS_AKTIV            0x08
200
#define FC_CFG_KOMPASS_FIX              0x10
201
#define FC_CFG_GPS_AKTIV                0x20
799 holgerb 202
#define CFG_LAND_OUTSIDE_FLYZONE                0x40
331 holgerb 203
#define FC_CFG_DREHRATEN_BEGRENZER      0x80
190 killagreg 204
 
489 killagreg 205
//Parameter.ExtraConfig
331 holgerb 206
#define CFG2_HEIGHT_LIMIT                       0x01
207
#define CFG2_VARIO_BEEP                         0x02
799 holgerb 208
#define CFG_FLYZONE_REQUIRED                    0x04
331 holgerb 209
#define CFG_3_3V_REFERENCE                      0x08
210
#define CFG_NO_RCOFF_BEEPING                    0x10
211
#define CFG_GPS_AID                             0x20
212
#define CFG_TEACHABLE_CAREFREE                  0x40
213
#define CFG_IGNORE_MAG_ERR_AT_STARTUP   0x80
320 holgerb 214
 
588 holgerb 215
// Parameter.HomeYawMode
216
#define NO_CHANGE               0
217
#define FRONT_TO_HOME   1
218
#define REAR_TO_HOME    2
219
#define LIKE_AT_START   3
220
 
587 holgerb 221
// Parameter.ReceiverType defines for the receiver selection
222
#define RECEIVER_PPM                            0
223
#define RECEIVER_SPEKTRUM                       1
224
#define RECEIVER_SPEKTRUM_HI_RES        2
225
#define RECEIVER_SPEKTRUM_LOW_RES       3
226
#define RECEIVER_JETI                           4
227
#define RECEIVER_ACT_DSL                        5
228
#define RECEIVER_HOTT                           6
229
#define RECEIVER_SBUS                           7
230
#define RECEIVER_USER                           8
231
 
232
#define RECEIVER_UNKNOWN                        0xFF
233
 
190 killagreg 234
#define LIMIT_MIN(value, min) {if(value <= min) value = min;}
235
#define LIMIT_MAX(value, max) {if(value >= max) value = max;}
236
#define LIMIT_MIN_MAX(value, min, max) {if(value <= min) value = min; else if(value >= max) value = max;}
237
 
327 holgerb 238
 
239
#define Poti1  FC.Poti[0]
240
#define Poti2  FC.Poti[1]
241
#define Poti3  FC.Poti[2]
242
#define Poti4  FC.Poti[3]
243
#define Poti5  FC.Poti[4]
244
#define Poti6  FC.Poti[5]
245
#define Poti7  FC.Poti[6]
246
#define Poti8  FC.Poti[7]
247
 
780 holgerb 248
extern s16 LuftdruckTemperaturKompensation, LuftdruckTemperaturOffset;
41 ingob 249
extern u16 BeepTime;
92 killagreg 250
extern u8  NCFlags;
255 killagreg 251
extern u8 ClearFCStatusFlags;
41 ingob 252
void Interrupt_Init(void);
153 killagreg 253
extern s16 GeoMagDec;
504 holgerb 254
extern u8 NewWPL_Name;
1 ingob 255
 
699 holgerb 256
#define NOTHING                 0
257
#define MASTER                  1
258
#define SLAVE                   2
259
extern u8 IamMaster;
260
 
505 holgerb 261
#define VERSION_SERIAL_MAJOR    11 // do not change!
262
 
41 ingob 263
typedef struct
264
{
265
        u8 ActiveSetting;
266
        u8 User1;
267
        u8 User2;
268
        u8 User3;
269
        u8 User4;
270
        u8 User5;
271
        u8 User6;
272
        u8 User7;
273
        u8 User8;
274
        u8 NaviGpsModeControl;
275
        u8 NaviGpsGain;
276
        u8 NaviGpsP;
277
        u8 NaviGpsI;
278
        u8 NaviGpsD;
56 holgerb 279
        u8 NaviGpsPLimit;
280
        u8 NaviGpsILimit;
281
        u8 NaviGpsDLimit;
41 ingob 282
        u8 NaviGpsACC;
283
        u8 NaviGpsMinSat;
284
        u8 NaviStickThreshold;
532 holgerb 285
        u8 NaviMaxFlyingRange; // in 10m
41 ingob 286
        u8 NaviWindCorrection;
327 holgerb 287
        u8 NaviAccCompensation;
41 ingob 288
        u8 NaviSpeedCompensation;
289
        u8 LowVoltageWarning;
290
        u8 NaviAngleLimitation;
56 holgerb 291
        u8 NaviPH_LoginTime;
544 holgerb 292
        u8 OrientationAngle; // where is front - in 15°
293
        u8 CamOrientation;       // direction of the camera in 15°
320 holgerb 294
        u8 GlobalConfig;
295
        u8 ExtraConfig;
321 holgerb 296
        u8 ComingHomeAltitude;
350 holgerb 297
        u8 GlobalConfig3;
516 holgerb 298
        u8 AutoPhotoDistance; // Distance between Photo releases (Position)
489 killagreg 299
        u8 FromFC_LandingSpeed;
300
        u8 FromFC_LowVoltageHomeActive;
516 holgerb 301
        u8 AutoPhotoAltitudes; // Distance between Photo releases (Altitudes)
519 holgerb 302
        u8 SingleWpSpeed;
532 holgerb 303
        u8 DescendRange; // in 10m
304
        u8 MaximumAltitude; // in m
573 holgerb 305
        u8 Driftkomp;
587 holgerb 306
        u8 ReceiverType;
588 holgerb 307
        u8 HomeYawMode;
624 holgerb 308
        u8 Speak100m;
309
        u8 AutoWpEventValue;
646 holgerb 310
        u8 FailSafeTime;
41 ingob 311
} __attribute__((packed)) Param_t;
1 ingob 312
 
41 ingob 313
typedef struct
314
{
315
        s8 StickNick;
316
        s8 StickRoll;
317
        s8 StickYaw;
318
        s8 StickGas;
190 killagreg 319
        u8 Poti[8];
41 ingob 320
        u8 RC_Quality;
125 killagreg 321
        u8 RC_RSSI;
595 holgerb 322
        u16 BAT_Voltage;
206 killagreg 323
        u16 BAT_Current;
324
        u16 BAT_UsedCapacity;
255 killagreg 325
        u8 StatusFlags;
326
        u8 Error[5];
294 holgerb 327
        u8 StatusFlags2;
436 holgerb 328
        u8 FromFC_SpeakHoTT;
489 killagreg 329
        s16 FromFC_CompassOffset;
330
        u8 FromFC_DisableDeclination;
573 holgerb 331
        u8 StatusFlags3;
739 holgerb 332
        s16 Altimeter_5cm;  // devide by 20 to get meters & multiply with 5 to get cm
573 holgerb 333
        u8 RealStatusFlags; // this is a copy of the status flags -> but not effected by the simulation
334
        u16 AdNeutralNick;
335
        u16 AdNeutralRoll;
336
        u16 AdNeutralYaw;
587 holgerb 337
        u16 BoatNeutralNick;
338
        u16 BoatNeutralRoll;
339
        u16 BoatNeutralYaw;
607 holgerb 340
        u8 AutoPhotoDistance;
489 killagreg 341
} __attribute__((packed)) FC_t; // from FC
1 ingob 342
 
699 holgerb 343
typedef struct
344
{
345
        u8 ErrorCode;
346
        u8 StatusFlags;
347
        u8 StatusFlags2;
348
        u8 StatusFlags3;
349
        u8 NC_To_FC_Flags;
350
        u8 MagnetField;                                         // in %
351
        s16 GyroCompassCorrected;
352
} __attribute__((packed)) Partner_t;    // from FC
353
 
354
extern Partner_t Partner;
41 ingob 355
extern Param_t Parameter;
78 holgerb 356
extern volatile FC_t FC;
41 ingob 357
extern s8 ErrorMSG[25];
699 holgerb 358
extern s8 PartnerErrorMSG[25];
359
extern u8 ErrorCode,PartnerErrorCode;
41 ingob 360
extern u8 StopNavigation;
328 holgerb 361
extern u8 ErrorGpsFixLost;
513 killagreg 362
extern u8 FromFC_LoadWP_List, ToFC_MaxWpListIndex, FromFC_Load_SinglePoint, FromFC_Save_SinglePoint;
378 holgerb 363
extern volatile u32 SPIWatchDog; // stop Navigation if this goes to zero
362 holgerb 364
extern volatile u32 SD_WatchDog; // stop Logging if this goes to zero
378 holgerb 365
extern volatile u32 PollingTimeout;
663 holgerb 366
extern u32 CountGpsProcessedIn5Sec,CountNewGpsDataIn5Sec, FreqGpsNavProcessed, FreqNewGpsData;
367
extern u32 TimeSinceMotorStart;
699 holgerb 368
extern u8 NC_To_FC_Flags, NC_To_FC_Autostart;
514 holgerb 369
extern u16 SD_SettingWaitLED;
370
extern u16 SD_PosAccuracy;
371
extern u16 SD_ComingHomeSpeed;
372
extern u16 SD_DPH_Speed;
532 holgerb 373
extern u32 MaxWP_Radius_in_m;
519 holgerb 374
extern u8 SpeakWaypointRached;  // Speak once as soon as the Points are active
549 holgerb 375
extern u8 SpeakNextWaypoint;    // Speak once when reached
376
extern u8 NewWaypointsReceived; // when 1: activates the Waypoint list as soon as CH is started
699 holgerb 377
extern s16 GyroCompassCorrected;
378
extern s16 CompassSetpointCorrected; // The compass setpoint that the FC tries to keep - corrected with the magnetic declination
379
extern s16 CompassSetpoint;
380
extern u8 AmountOfMotors;
764 holgerb 381
extern s16 SimulatedDirection;          // simulated compass direction
382
extern u16 ToFC_Parachute_Off;          // forced Switch off via IO1
383
extern u8 IO1_Function;
780 holgerb 384
extern u8 BaroCalState;
799 holgerb 385
extern u8 ErrorOutSideOperationArea; // I am outside the operation polygon area
804 holgerb 386
extern u8 ShowCalibrationErrorMessage;
764 holgerb 387
#define OEM_NAME_LENGHT 16
388
extern u8 OEM_String[OEM_NAME_LENGHT+1];
806 holgerb 389
extern u8 TryAgain_UBX_Setup;
514 holgerb 390
 
529 holgerb 391
#define CHECK_ONLY     0
392
#define GET_LICENSE    1
393
#define COPY_SD_TO_EE  2
394
extern u8 CheckLicense(u8);
395
 
681 holgerb 396
// Portpin inputs
707 holgerb 397
#define PIN6_0 (GPIO6->DR[0x3FC] & 0x01)
398
#define PIN6_1 (GPIO6->DR[0x3FC] & 0x02)
399
#define PIN6_2 (GPIO6->DR[0x3FC] & 0x04)
681 holgerb 400
#define PIN6_3 (GPIO6->DR[0x3FC] & 0x08)
401
#define PIN6_4 (GPIO6->DR[0x3FC] & 0x10)
402
#define PIN6_5 (GPIO6->DR[0x3FC] & 0x20)
403
 
707 holgerb 404
#define TRIGGER_PP_INTERN PIN6_0
405
#define TRIGGER_PP_EXTERN PIN6_3
406
#define BLITZ_CONNECTED   PIN6_4
764 holgerb 407
#define IO1_INPUT                 PIN6_5
681 holgerb 408
 
41 ingob 409
#endif // _MAIN_H