Subversion Repositories NaviCtrl

Rev

Rev 457 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 ingob 1
/*#######################################################################################*/
2
/* !!! THIS IS NOT FREE SOFTWARE !!!                                                     */
3
/*#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + www.MikroKopter.com
6
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 7
// + Software Nutzungsbedingungen (english version: see below)
8
// + der Fa. HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland - nachfolgend Lizenzgeber genannt -
9
// + Der Lizenzgeber räumt dem Kunden ein nicht-ausschließliches, zeitlich und räumlich* unbeschränktes Recht ein, die im den
10
// + Mikrocontroller verwendete Firmware für die Hardware Flight-Ctrl, Navi-Ctrl, BL-Ctrl, MK3Mag & PC-Programm MikroKopter-Tool 
11
// + - nachfolgend Software genannt - nur für private Zwecke zu nutzen.
12
// + Der Einsatz dieser Software ist nur auf oder mit Produkten des Lizenzgebers zulässig.
1 ingob 13
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 14
// + Die vom Lizenzgeber gelieferte Software ist urheberrechtlich geschützt. Alle Rechte an der Software sowie an sonstigen im
15
// + Rahmen der Vertragsanbahnung und Vertragsdurchführung überlassenen Unterlagen stehen im Verhältnis der Vertragspartner ausschließlich dem Lizenzgeber zu.
16
// + Die in der Software enthaltenen Copyright-Vermerke, Markenzeichen, andere Rechtsvorbehalte, Seriennummern sowie
17
// + sonstige der Programmidentifikation dienenden Merkmale dürfen vom Kunden nicht verändert oder unkenntlich gemacht werden.
18
// + Der Kunde trifft angemessene Vorkehrungen für den sicheren Einsatz der Software. Er wird die Software gründlich auf deren
19
// + Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
20
// + Die Haftung des Lizenzgebers wird - soweit gesetzlich zulässig - begrenzt in Höhe des typischen und vorhersehbaren
21
// + Schadens. Die gesetzliche Haftung bei Personenschäden und nach dem Produkthaftungsgesetz bleibt unberührt. Dem Lizenzgeber steht jedoch der Einwand 
22
// + des Mitverschuldens offen.
23
// + Der Kunde trifft angemessene Vorkehrungen für den Fall, dass die Software ganz oder teilweise nicht ordnungsgemäß arbeitet.
24
// + Er wird die Software gründlich auf deren Verwendbarkeit zu dem von ihm beabsichtigten Zweck testen, bevor er diese operativ einsetzt.
25
// + Der Kunde wird er seine Daten vor Einsatz der Software nach dem Stand der Technik sichern.
26
// + Der Kunde ist darüber unterrichtet, dass der Lizenzgeber seine Daten im zur Vertragsdurchführung erforderlichen Umfang
27
// + und auf Grundlage der Datenschutzvorschriften erhebt, speichert, verarbeitet und, sofern notwendig, an Dritte übermittelt.
28
// + *) Die räumliche Nutzung bezieht sich nur auf den Einsatzort, nicht auf die Reichweite der programmierten Software.
29
// + #### ENDE DER NUTZUNGSBEDINGUNGEN ####'
30
// +  Hinweis: Informationen über erweiterte Nutzungsrechte (wie z.B. Nutzung für nicht-private Zwecke) sind auf Anfrage per Email an info(@)hisystems.de verfügbar.
1 ingob 31
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 32
// + Software LICENSING TERMS
1 ingob 33
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
360 holgerb 34
// + of HiSystems GmbH, Flachsmeerstrasse 2, 26802 Moormerland, Germany - the Licensor -
35
// + The Licensor grants the customer a non-exclusive license to use the microcontroller firmware of the Flight-Ctrl, Navi-Ctrl, BL-Ctrl, and MK3Mag hardware 
36
// + (the Software) exclusively for private purposes. The License is unrestricted with respect to time and territory*.
37
// + The Software may only be used with the Licensor's products.
38
// + The Software provided by the Licensor is protected by copyright. With respect to the relationship between the parties to this
39
// + agreement, all rights pertaining to the Software and other documents provided during the preparation and execution of this
40
// + agreement shall be the property of the Licensor.
41
// + The information contained in the Software copyright notices, trademarks, other legal reservations, serial numbers and other
42
// + features that can be used to identify the program may not be altered or defaced by the customer.
43
// + The customer shall be responsible for taking reasonable precautions
44
// + for the safe use of the Software. The customer shall test the Software thoroughly regarding its suitability for the
45
// + intended purpose before implementing it for actual operation. The Licensor's liability shall be limited to the extent of typical and
46
// + foreseeable damage to the extent permitted by law, notwithstanding statutory liability for bodily injury and product
47
// + liability. However, the Licensor shall be entitled to the defense of contributory negligence.
48
// + The customer will take adequate precautions in the case, that the software is not working properly. The customer will test
49
// + the software for his purpose before any operational usage. The customer will backup his data before using the software.
50
// + The customer understands that the Licensor collects, stores and processes, and, where required, forwards, customer data
51
// + to third parties to the extent necessary for executing the agreement, subject to applicable data protection and privacy regulations.
52
// + *) The territory aspect only refers to the place where the Software is used, not its programmed range.
53
// + #### END OF LICENSING TERMS ####
54
// + Note: For information on license extensions (e.g. commercial use), please contact us at info(@)hisystems.de.
1 ingob 55
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 56
//#define MCLK96MHZ
1 ingob 57
const unsigned long _Main_Crystal = 25000;
41 ingob 58
#include <stdio.h>
59
#include "91x_lib.h"
60
#include "led.h"
61
#include "uart0.h"
62
#include "uart1.h"
63
#include "uart2.h"
215 killagreg 64
#include "gps.h"
41 ingob 65
#include "i2c.h"
242 killagreg 66
#include "compass.h"
426 holgerb 67
#include "ncmag.h"
119 killagreg 68
#include "timer1.h"
69
#include "timer2.h"
134 killagreg 70
#include "analog.h"
41 ingob 71
#include "spi_slave.h"
72
#include "fat16.h"
73
#include "usb.h"
74
#include "sdc.h"
82 killagreg 75
#include "logging.h"
156 killagreg 76
#include "params.h"
88 killagreg 77
#include "settings.h"
154 killagreg 78
#include "config.h"
1 ingob 79
#include "main.h"
250 ingob 80
#include "debug.h"
254 killagreg 81
#include "eeprom.h"
350 holgerb 82
#include "ssc.h"
362 holgerb 83
#include "sdc.h"
380 holgerb 84
#include "uart1.h"
254 killagreg 85
 
427 killagreg 86
 
87
 
314 killagreg 88
#ifdef FOLLOW_ME
89
u8 TransmitAlsoToFC = 0;
90
#endif
41 ingob 91
u32 TimerCheckError;
427 killagreg 92
u8 ErrorCode = 0;                        
41 ingob 93
u16 BeepTime;
92 killagreg 94
u8  NCFlags = 0;
153 killagreg 95
s16 GeoMagDec = 0; // local magnetic declination in 0.1 deg
328 holgerb 96
u8 ErrorGpsFixLost = 0;
1 ingob 97
 
255 killagreg 98
u8 ClearFCStatusFlags = 0;
41 ingob 99
u8 StopNavigation = 0;
378 holgerb 100
volatile u32 PollingTimeout = 10000;
41 ingob 101
Param_t Parameter;
78 holgerb 102
volatile FC_t FC;
378 holgerb 103
volatile u32 SPIWatchDog = 15000; // stop Navigation if this goes to zero
400 holgerb 104
volatile u32 SD_WatchDog = 15000; // stop Logging if this goes to zero
457 holgerb 105
u32 CountGpsProcessedIn5Sec = 0,CountNewGpsDataIn5Sec = 0, FreqGpsProcessedIn5Sec = 0, FreqNewGpsDataIn5Sec = 0;
1 ingob 106
 
41 ingob 107
s8 ErrorMSG[25];
108
 
1 ingob 109
//----------------------------------------------------------------------------------------------------
41 ingob 110
void SCU_Config(void)
1 ingob 111
{
41 ingob 112
        /* configure PLL and set it as master clock source */
113
        SCU_MCLKSourceConfig(SCU_MCLK_OSC);             // set master clock source to external oscillator clock (25MHz) before diabling the PLL
114
        SCU_PLLCmd(DISABLE);                                    // now disable the PLL
115
        #ifdef MCLK96MHZ
116
        SCU_BRCLKDivisorConfig(SCU_BRCLK_Div2); // set BRCLK to MCLK/2 = 48MHz
117
        SCU_PCLKDivisorConfig(SCU_PCLK_Div4);   // set PCLK     (APB bus clock) divisor to 4 (half Reference Clock)
118
        SCU_RCLKDivisorConfig(SCU_RCLK_Div2);   // set RCLK     (Reference Clock) divisor to 1 (full PPL clock)
119
        SCU_HCLKDivisorConfig(SCU_HCLK_Div2);   // set HCLK     (AHB bus clock) divisor to 1 (full Reference Clock)
120
        SCU_PLLFactorsConfig(192,25,2);                 // PLL = 96 MHz, Feedback Divider N=192, Pre-Divider M=25, Post-Divider P=2
121
        #else
122
        SCU_BRCLKDivisorConfig(SCU_BRCLK_Div1); // set BRCLK to MCLK = 48MHz
123
        SCU_PCLKDivisorConfig(SCU_PCLK_Div2);   // set PCLK     (APB bus clock) divisor to 2 (half Reference Clock)
124
        SCU_RCLKDivisorConfig(SCU_RCLK_Div1);   // set RCLK     (Reference Clock) divisor to 1 (full PPL clock)
125
        SCU_HCLKDivisorConfig(SCU_HCLK_Div1);   // set HCLK     (AHB bus clock) divisor to 1 (full Reference Clock)
126
        SCU_PLLFactorsConfig(192,25,3);                 // PLL = 48 MHz, Feedback Divider N=192, Pre-Divider M=25, Post-Divider P=3
127
        #endif
128
        SCU_PLLCmd(ENABLE);                                     // Enable PLL (is disabled by SCU_PLLFactorsConfig)
129
        SCU_MCLKSourceConfig(SCU_MCLK_PLL);     // set master clock source to PLL
130
}
1 ingob 131
 
41 ingob 132
//----------------------------------------------------------------------------------------------------
133
void GetNaviCtrlVersion(void)
1 ingob 134
{
41 ingob 135
        u8 msg[25];
270 killagreg 136
 
264 killagreg 137
        sprintf(msg,"\n\r NaviCtrl HW: V%d.%d SW: V%d.%d%c",  Version_HW/10, Version_HW%10, VERSION_MAJOR,  VERSION_MINOR, 'a'+ VERSION_PATCH);
110 killagreg 138
        UART1_PutString(msg);
1 ingob 139
}
140
 
141
//----------------------------------------------------------------------------------------------------
231 holgerb 142
 
41 ingob 143
void CheckErrors(void)
144
{
329 holgerb 145
    static s32 no_error_delay = 0;
328 holgerb 146
        s32 newErrorCode = 0;
232 killagreg 147
        UART_VersionInfo.HardwareError[0] = 0;
231 holgerb 148
 
338 holgerb 149
        if(CheckDelay(I2C1_Timeout) || (Compass_Heading < 0)) DebugOut.StatusRed |= AMPEL_COMPASS;
150
        else DebugOut.StatusRed &= ~AMPEL_COMPASS; // MK3Mag green status
231 holgerb 151
 
338 holgerb 152
        if((FC.Error[1] & FC_ERROR1_I2C) || (FC.Error[1] & FC_ERROR1_BL_MISSING)) DebugOut.StatusRed |= AMPEL_BL;
153
        else DebugOut.StatusRed &= ~AMPEL_BL; // BL-Ctrl green status
232 killagreg 154
 
338 holgerb 155
        if(UART_VersionInfo.HardwareError[0] || UART_VersionInfo.HardwareError[1]) DebugOut.StatusRed |= AMPEL_NC;
156
        else DebugOut.StatusRed &= ~AMPEL_NC;
157
 
397 holgerb 158
    if((FCCalibActive || CompassCalState) && FC_Version.Hardware)
392 holgerb 159
     {
160
                sprintf(ErrorMSG,"Calibrate... ");
161
                newErrorCode = 0;
162
                ErrorCode = 0;
163
                no_error_delay = 1;
164
         }
165
        else
146 killagreg 166
        if(CheckDelay(SPI0_Timeout))
41 ingob 167
        {
380 holgerb 168
                LED_RED_ON;              
41 ingob 169
                sprintf(ErrorMSG,"no FC communication ");
328 holgerb 170
                newErrorCode = 3;
41 ingob 171
                StopNavigation = 1;
338 holgerb 172
                DebugOut.StatusGreen &= ~AMPEL_FC; // status of FC Present
173
                DebugOut.StatusGreen &= ~AMPEL_BL; // status of BL Present
256 killagreg 174
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_SPI_RX;
41 ingob 175
        }
229 holgerb 176
        else if(CheckDelay(I2C1_Timeout))
41 ingob 177
        {
368 holgerb 178
                LED_RED_ON;              
380 holgerb 179
                sprintf(ErrorMSG,"no compass communica");
149 killagreg 180
                //Reset I2CBus
181
                I2C1_Deinit();
182
                I2C1_Init();
328 holgerb 183
                newErrorCode = 4;
41 ingob 184
                StopNavigation = 1;
256 killagreg 185
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_RX;
338 holgerb 186
                DebugOut.StatusRed |= AMPEL_COMPASS;
41 ingob 187
        }
188
        else if(FC_Version.Compatible != FC_SPI_COMPATIBLE)
189
        {
190
                LED_RED_ON;
318 holgerb 191
#ifndef FOLLOW_ME
41 ingob 192
                sprintf(ErrorMSG,"FC not compatible ");
318 holgerb 193
#else
194
                sprintf(ErrorMSG,"! FollowMe only ! ");
195
#endif
328 holgerb 196
                newErrorCode = 1;
41 ingob 197
                StopNavigation = 1;
256 killagreg 198
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_FC_INCOMPATIBLE;
338 holgerb 199
                DebugOut.StatusRed |= AMPEL_NC;
41 ingob 200
        }
231 holgerb 201
 
255 killagreg 202
        else if(FC.Error[0] & FC_ERROR0_GYRO_NICK)
231 holgerb 203
        {
204
                LED_RED_ON;
205
                sprintf(ErrorMSG,"ERR: FC Nick Gyro");
328 holgerb 206
                newErrorCode = 10;
232 killagreg 207
        }
255 killagreg 208
        else if(FC.Error[0] & FC_ERROR0_GYRO_ROLL)
231 holgerb 209
        {
210
                LED_RED_ON;
211
                sprintf(ErrorMSG,"ERR: FC Roll Gyro");
328 holgerb 212
                newErrorCode = 11;
232 killagreg 213
        }
255 killagreg 214
        else if(FC.Error[0] & FC_ERROR0_GYRO_YAW)
231 holgerb 215
        {
216
                LED_RED_ON;
217
                sprintf(ErrorMSG,"ERR: FC Yaw Gyro");
328 holgerb 218
                newErrorCode = 12;
232 killagreg 219
        }
255 killagreg 220
        else if(FC.Error[0] & FC_ERROR0_ACC_NICK)
231 holgerb 221
        {
222
                LED_RED_ON;
223
                sprintf(ErrorMSG,"ERR: FC Nick ACC");
328 holgerb 224
                newErrorCode = 13;
232 killagreg 225
        }
255 killagreg 226
        else if(FC.Error[0] & FC_ERROR0_ACC_ROLL)
231 holgerb 227
        {
228
                LED_RED_ON;
229
                sprintf(ErrorMSG,"ERR: FC Roll ACC");
328 holgerb 230
                newErrorCode = 14;
232 killagreg 231
        }
255 killagreg 232
        else if(FC.Error[0] & FC_ERROR0_ACC_TOP)
231 holgerb 233
        {
234
                LED_RED_ON;
327 holgerb 235
                sprintf(ErrorMSG,"ERR:FC Z-ACC");
328 holgerb 236
                newErrorCode = 15;
232 killagreg 237
        }
351 holgerb 238
        else if(NC_To_FC_Flags & NC_TO_FC_FLYING_RANGE)
239
        {
240
                LED_RED_ON;
241
                sprintf(ErrorMSG,"ERR:Flying range!");
242
                newErrorCode = 28;
243
        }
255 killagreg 244
        else if(FC.Error[0] & FC_ERROR0_PRESSURE)
231 holgerb 245
        {
380 holgerb 246
                LED_RED_ON;              
327 holgerb 247
                sprintf(ErrorMSG,"ERR:Pressure sensor");
328 holgerb 248
                newErrorCode = 16;
232 killagreg 249
        }
255 killagreg 250
        else if(FC.Error[1] &  FC_ERROR1_I2C)
231 holgerb 251
        {
252
                LED_RED_ON;
327 holgerb 253
                sprintf(ErrorMSG,"ERR:I2C FC to BL");
328 holgerb 254
                newErrorCode = 17;
232 killagreg 255
        }
255 killagreg 256
        else if(FC.Error[1] &  FC_ERROR1_BL_MISSING)
231 holgerb 257
        {
258
                LED_RED_ON;
259
                sprintf(ErrorMSG,"ERR: Bl Missing");
328 holgerb 260
                newErrorCode = 18;
232 killagreg 261
        }
255 killagreg 262
        else if(FC.Error[1] &  FC_ERROR1_MIXER)
231 holgerb 263
        {
264
                LED_RED_ON;
265
                sprintf(ErrorMSG,"Mixer Error");
328 holgerb 266
                newErrorCode = 19;
232 killagreg 267
        }
350 holgerb 268
        else if(CheckDelay(UBX_Timeout) && Parameter.GlobalConfig & FC_CFG_GPS_AKTIV)
41 ingob 269
        {
270
                LED_RED_ON;
350 holgerb 271
//      if(!(Parameter.GlobalConfig & FC_CFG_GPS_AKTIV)) sprintf(ErrorMSG,"GPS disconnected ");
272
//              else 
380 holgerb 273
                 {                                     
274
                  sprintf(ErrorMSG,"no GPS communication");
320 holgerb 275
                  UART_VersionInfo.HardwareError[0] |= NC_ERROR0_GPS_RX;
454 holgerb 276
                  UART_VersionInfo.Flags &= ~NC_VERSION_FLAG_GPS_PRESENT;
328 holgerb 277
              newErrorCode = 5;
320 holgerb 278
                 }
41 ingob 279
                StopNavigation = 1;
320 holgerb 280
//              UBX_Timeout = SetDelay(500);
41 ingob 281
        }
426 holgerb 282
        else if(Compass_Heading < 0 && NCMAG_Present && !NCMAG_IsCalibrated)
283
        {
284
                LED_RED_ON;
285
                sprintf(ErrorMSG,"compass not calibr.");
286
                newErrorCode = 31;
287
                StopNavigation = 1;
288
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_VALUE;
289
        }
254 killagreg 290
        else if(Compass_Heading < 0)
41 ingob 291
        {
292
                LED_RED_ON;
293
                sprintf(ErrorMSG,"bad compass value ");
328 holgerb 294
                newErrorCode = 6;
41 ingob 295
                StopNavigation = 1;
256 killagreg 296
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_VALUE;
41 ingob 297
        }
255 killagreg 298
        else if((FC.Error[1] &  FC_ERROR1_SPI_RX))
199 killagreg 299
        {
300
                LED_RED_ON;
301
                sprintf(ErrorMSG,"FC spi rx error ");
328 holgerb 302
                newErrorCode = 8;
213 killagreg 303
                StopNavigation = 1;
199 killagreg 304
        }
255 killagreg 305
        else if(FC.Error[0] &  FC_ERROR0_CAREFREE)
231 holgerb 306
        {
307
                LED_RED_ON;
308
                sprintf(ErrorMSG,"FC: Carefree Error");
328 holgerb 309
                newErrorCode = 20;
232 killagreg 310
        }
255 killagreg 311
        else if(FC.Error[1] &  FC_ERROR1_PPM)
41 ingob 312
        {
313
                LED_RED_ON;
314
                sprintf(ErrorMSG,"RC Signal lost ");
328 holgerb 315
                newErrorCode = 7;
41 ingob 316
        }
328 holgerb 317
        else if(ErrorGpsFixLost)
318
        {
319
         LED_RED_ON;
320
         sprintf(ErrorMSG,"GPS Fix lost    ");
321
         newErrorCode = 21;
322
        }
330 holgerb 323
        else if(ErrorDisturbedEarthMagnetField)
324
        {
325
         LED_RED_ON;
326
         sprintf(ErrorMSG,"Magnet error    ");
327
         newErrorCode = 22;
338 holgerb 328
         DebugOut.StatusRed |= AMPEL_COMPASS | AMPEL_NC;
329
         UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_VALUE;
330 holgerb 330
        }
338 holgerb 331
        else if(BL_MinOfMaxPWM == 40 && (FC.StatusFlags & FC_STATUS_FLY) && !ErrorCode)
332
        {
333
         LED_RED_ON;
334
         sprintf(ErrorMSG,"ERR:Motor restart  ");
335
         newErrorCode = 23;
336
         DebugOut.StatusRed |= AMPEL_BL;
337
        }
432 holgerb 338
        else if(BL_MinOfMaxPWM != 255 && (BL_MinOfMaxPWM != 250) && (FC.StatusFlags & FC_STATUS_FLY) && !ErrorCode)
338 holgerb 339
        {
340
         LED_RED_ON;
341
         sprintf(ErrorMSG,"ERR:BL Limitation   ");
342
         newErrorCode = 24;
343
         DebugOut.StatusRed |= AMPEL_BL;
344
        }
348 holgerb 345
        else if(NCFlags & NC_FLAG_RANGE_LIMIT && (FC.StatusFlags & FC_STATUS_FLY) && !ErrorCode)
346
        {
347
         LED_RED_ON;
351 holgerb 348
         sprintf(ErrorMSG,"ERR:GPS range  ");
348 holgerb 349
         newErrorCode = 25;
350
         DebugOut.StatusRed |= AMPEL_NC;
351
        }
397 holgerb 352
        else if((!SD_SWITCH || (SDCardInfo.Valid == 0)) && Parameter.GlobalConfig3 & CFG3_NO_SDCARD_NO_START && !(FC.StatusFlags & FC_STATUS_FLY))
350 holgerb 353
        {
354
         LED_RED_ON;
355
         sprintf(ErrorMSG,"ERR:No SD-Card  ");
356
         newErrorCode = 26;
357
         DebugOut.StatusRed |= AMPEL_NC;
358
        }
383 holgerb 359
        else if((SD_LoggingError || (SD_WatchDog < 2000 && SD_WatchDog != 0)) && Parameter.GlobalConfig3 & CFG3_NO_SDCARD_NO_START)
351 holgerb 360
        {
368 holgerb 361
         LED_RED_ON;       
380 holgerb 362
         sprintf(ErrorMSG,"ERR:SD Logging abort");
351 holgerb 363
         newErrorCode = 27;
364
         DebugOut.StatusRed |= AMPEL_NC;
365
         SD_LoggingError = 0;
366
        }
355 holgerb 367
        else if(((AbsoluteFlyingAltitude) && (NaviData.Altimeter / 20 >= AbsoluteFlyingAltitude)) && (FC.StatusFlags & FC_STATUS_FLY))
368
        {
369
         LED_RED_ON;
370
         sprintf(ErrorMSG,"ERR:Max Altitude ");
371
         newErrorCode = 29;
372
         DebugOut.StatusRed |= AMPEL_NC;
373
        }
420 holgerb 374
        else if(Parameter.GlobalConfig3 & CFG3_NO_GPSFIX_NO_START && !(NCFlags & NC_FLAG_GPS_OK) && ((FC.StatusFlags & (FC_STATUS_START | FC_STATUS_MOTOR_RUN)) || (FC.StickGas < -50 && FC.StickYaw < -50)))
398 holgerb 375
        {                                                                                                                                                  
376
         LED_RED_ON;
377
         sprintf(ErrorMSG,"No GPS Fix      ");
378
         newErrorCode = 30;
379
        }
41 ingob 380
        else // no error occured
381
        {
382
                StopNavigation = 0;
383
                LED_RED_OFF;
328 holgerb 384
                if(no_error_delay) { no_error_delay--;  }
385
                else
380 holgerb 386
                 {                                     
387
                  sprintf(ErrorMSG,"No Error            ");
328 holgerb 388
                  ErrorCode = 0;
389
                 }
41 ingob 390
        }
328 holgerb 391
 
392
    if(newErrorCode)
393
         {
339 holgerb 394
          if(FC.StatusFlags & FC_STATUS_MOTOR_RUN) no_error_delay = 8; // delay the errors if the motors are running
328 holgerb 395
          ErrorCode = newErrorCode;
396
         }
397
 FC.Error[0] = 0;
398
 FC.Error[1] = 0;
399
 FC.Error[2] = 0;
400
 FC.Error[3] = 0;
401
 FC.Error[4] = 0;
402
 ErrorGpsFixLost = 0;
41 ingob 403
}
24 StephanB 404
 
378 holgerb 405
 
406
 
407
void Polling(void)
408
{
453 holgerb 409
 static u8 running = 0, oldFcFlags = 0, count5sec;
378 holgerb 410
 if(running) return;
411
 running = 1;
412
                SPI0_UpdateBuffer();    // also calls the GPS-functions
413
                UART0_ProcessRxData();  // GPS process request
414
                UART0_TransmitTxData(); // GPS send answer
380 holgerb 415
                UART1_ProcessRxData();  // PC process request
378 holgerb 416
                UART1_TransmitTxData(); // PC send answer
417
                UART2_TransmitTxData(); // FC send answer
418
                CalcHeadFree();
380 holgerb 419
                // ---------------- Error Check Timing ----------------------------
398 holgerb 420
                if(CheckDelay(TimerCheckError) || (FC.StatusFlags & FC_STATUS_START && !(oldFcFlags & FC_STATUS_START))) // Timer or FY wants to start
380 holgerb 421
                {
453 holgerb 422
                        if(CheckDelay(TimerCheckError))
423
                         {
424
                          TimerCheckError = SetDelay(1000);
425
                          if(++count5sec == 5)
426
                           {
427
                                count5sec = 0;
457 holgerb 428
                                FreqGpsProcessedIn5Sec = CountGpsProcessedIn5Sec * 2;
429
                                FreqNewGpsDataIn5Sec = CountNewGpsDataIn5Sec * 2;
430
                                CountGpsProcessedIn5Sec = 0;
431
                                CountNewGpsDataIn5Sec = 0;  
453 holgerb 432
                           }
433
                         }
398 holgerb 434
                        oldFcFlags = FC.StatusFlags;
380 holgerb 435
                        if(CheckDelay(SPI0_Timeout) && (DebugUART == UART1)) GPS_Navigation(&GPSData, &(ToFlightCtrl.GPSStick)); // process the GPS data even if the FC is not connected
436
 
437
                        if(!CheckDelay(SPI0_Timeout) || (DebugUART == UART1)) CheckErrors();
438
 
439
                        if(FC.StatusFlags & FC_STATUS_FLY) NaviData.FlyingTime++; // we want to count the battery-time
440
//                      else NaviData.FlyingTime = 0; // not the time per flight
441
                        if(SerialLinkOkay) SerialLinkOkay--;
442
                        if(SerialLinkOkay < 250 - 5) NCFlags |= NC_FLAG_NOSERIALLINK; // 5 seconds timeout for serial communication
443
                        else NCFlags &= ~NC_FLAG_NOSERIALLINK;
444
                        if(StopNavigation && (Parameter.NaviGpsModeControl >=  50) && (Parameter.GlobalConfig & FC_CFG_GPS_AKTIV)) BeepTime = 1000;
445
                }
378 holgerb 446
 running = 0;
447
}
448
 
380 holgerb 449
// the handler will be cyclic called by the timer 1 ISR
450
// used is for critical timing parts that normaly would handled
451
// within the main loop that could block longer at logging activities
154 killagreg 452
void EXTIT3_IRQHandler(void)
453
{
195 killagreg 454
        IENABLE;
154 killagreg 455
        VIC_ITCmd(EXTIT3_ITLine,DISABLE); // disable irq
292 killagreg 456
        Compass_Update();               // update compass communication
154 killagreg 457
        Analog_Update();                // get new ADC values
378 holgerb 458
 
380 holgerb 459
        if(!PollingTimeout)
460
        {
461
                PollingTimeout = 5;
462
                Polling();
463
        }
378 holgerb 464
 
465
        VIC_SWITCmd(EXTIT3_ITLine,DISABLE); // clear pending bit
195 killagreg 466
        VIC_ITCmd(EXTIT3_ITLine, ENABLE); // enable irq
467
        IDISABLE;
378 holgerb 468
        VIC1->VAR = 0xFF; // write any value to VIC0 Vector address register
154 killagreg 469
}
470
 
41 ingob 471
//----------------------------------------------------------------------------------------------------
472
int main(void)
473
{
431 killagreg 474
 
324 killagreg 475
        static u32 ftimer =0;
476
        static u8 fstate = 0;
456 holgerb 477
//      static File_t* f = NULL;
324 killagreg 478
 
431 killagreg 479
 
41 ingob 480
        /* Configure the system clocks */
481
        SCU_Config();
482
        /* init VIC (Vectored Interrupt Controller)     */
483
        SCU_AHBPeriphClockConfig(__VIC,ENABLE); // enable AHB bus clock for VIC
484
        SCU_AHBPeriphReset(__VIC, DISABLE);             // disable reset state for VIC
485
        VIC_DeInit();                                                   // deinitializes the VIC module registers to their default reset values.
196 killagreg 486
        VIC_InitDefaultVectors();
487
 
119 killagreg 488
        // initialize timer 1 for System Clock and delay rountines
41 ingob 489
        TIMER1_Init();
490
        // initialize the LEDs (needs Timer 1)
491
        Led_Init();
492
        // initialize the debug UART1
493
        UART1_Init();
110 killagreg 494
        UART1_PutString("\r\n---------------------------------------------");
275 killagreg 495
        // initialize usb
496
        USB_ConfigInit();
120 killagreg 497
        // initialize timer 2 for servo outputs
180 killagreg 498
        //TIMER2_Init();
41 ingob 499
        // initialize UART2 to FLIGHTCTRL
500
        UART2_Init();
501
        // initialize UART0 (to MKGPS or MK3MAG)
502
        UART0_Init();
134 killagreg 503
        // initialize adc
504
        Analog_Init();
41 ingob 505
        // initialize SPI0 to FC
506
        SPI0_Init();
242 killagreg 507
        // initialize i2c bus (needs Timer 1)
41 ingob 508
        I2C1_Init();
247 killagreg 509
        // initialize fat16 partition on sd card (needs Timer 1)
41 ingob 510
        Fat16_Init();
156 killagreg 511
        // initialize NC params
512
        NCParams_Init();
88 killagreg 513
        // initialize the settings
514
        Settings_Init();
92 killagreg 515
        // initialize logging (needs settings)
82 killagreg 516
        Logging_Init();
1 ingob 517
 
362 holgerb 518
        LED_GRN_ON;
41 ingob 519
        TimerCheckError = SetDelay(3000);
175 holgerb 520
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++");
110 killagreg 521
        UART1_PutString("\n\r Version information:");
116 killagreg 522
 
41 ingob 523
        GetNaviCtrlVersion();
338 holgerb 524
        DebugOut.StatusGreen = AMPEL_NC | AMPEL_COMPASS; // NC and MK3Mag
525
        DebugOut.StatusRed = 0x00;
400 holgerb 526
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++");
149 killagreg 527
 
242 killagreg 528
        Compass_Init();
270 killagreg 529
 
400 holgerb 530
        GPS_Init();
531
 
314 killagreg 532
#ifdef FOLLOW_ME
533
        TransmitAlsoToFC = 1;
534
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++");
535
        UART1_PutString("\n\r FOLLOW-ME Transmitter only!");
536
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++\r\n\r\n");
537
        TransmitAlsoToFC = 0;
538
#else
150 killagreg 539
        SPI0_GetFlightCtrlVersion();
540
        if(FC_Version.Compatible != FC_SPI_COMPATIBLE)
41 ingob 541
        {
150 killagreg 542
                UART1_PutString("\n\r Flight-Ctrl not compatible");
41 ingob 543
                LED_RED_ON;
544
        }
314 killagreg 545
#endif
213 killagreg 546
        // ---------- Prepare the isr driven
154 killagreg 547
        // set to absolute lowest priority
548
    VIC_Config(EXTIT3_ITLine, VIC_IRQ, PRIORITY_SW);
195 killagreg 549
        // enable interrupts
154 killagreg 550
    VIC_ITCmd(EXTIT3_ITLine, ENABLE);
244 killagreg 551
 
250 ingob 552
        Debug_OK("START");
362 holgerb 553
        UART1_PutString("\r\n");
380 holgerb 554
        fifo_purge(&UART1_rx_fifo); // flush the whole fifo init buffer
555
        LED_GRN_ON;
556
        LED_RED_OFF;
154 killagreg 557
        for (;;) // the endless main loop
41 ingob 558
        {
431 killagreg 559
                Polling();
378 holgerb 560
                PollingTimeout = 15;
431 killagreg 561
                // ---------------- Logging  ---------------------------------------
380 holgerb 562
                if(SD_WatchDog)
431 killagreg 563
                {
564
                        SD_WatchDog = 30000;
565
                        if(SDCardInfo.Valid == 1) Logging_Update();  // could be block some time for at max. 2 seconds, therefore move time critical part of the mainloop into the ISR of timer 1
566
                        else if(FC.StatusFlags & FC_STATUS_START) SD_LoggingError = 100;
567
                        if(!SD_WatchDog) UART1_PutString("\n\rSD-Watchdog - Logging aborted\n\r");
568
                }
380 holgerb 569
 
432 holgerb 570
/*             
324 killagreg 571
                if(CheckDelay(ftimer))
572
                {
573
 
431 killagreg 574
                        static s8 filename[35];
575
                        static u8 i = 0;
576
                        s8 dbgmsg[40];
577
 
578
 
324 killagreg 579
 
580
                        ftimer = SetDelay(100);
581
                        if(FC.Poti[3]>100 && fstate == 0)
582
                        {
583
                                fstate = 1;
431 killagreg 584
                                sprintf(filename, "/toast/toasta/toast%02i.txt",i++);
324 killagreg 585
                        }
586
                        else if(FC.Poti[3]<100 && fstate == 2)
587
                        {
588
                                fstate = 3;
589
                        }
590
 
591
                        switch(fstate)
592
                        {
593
                                case 1:
431 killagreg 594
                                        sprintf(dbgmsg,"\r\nStart writing file: %s", filename);
595
                                        Debug(dbgmsg);
324 killagreg 596
                                        f = fopen_(filename, 'a');
597
                                        if(f== NULL) Fat16_Init();
598
                                        fstate = 2;
599
                                        break;
600
 
601
                                case 2:
602
                                        fputs_("\r\ntest edins sdv dsivbds iv dsivb disbv idsv bisd bv d suiv dsibsivbdis fbvisdöb visdbvisdb vidbfibds ibv", f);
603
                                        break;
604
 
605
                                case 3:
431 killagreg 606
                                        sprintf(dbgmsg,"\r\nClosing file: %s", filename);
607
                                        Debug(dbgmsg);
324 killagreg 608
                                        fclose_(f);
609
                                        fstate = 0;
610
                                        break;
611
 
612
                                default:
613
                                        break;
614
                        }
615
                }
432 holgerb 616
*/             
24 StephanB 617
        }
1 ingob 618
}
438 holgerb 619
//DebugOut.Analog[16]