Subversion Repositories NaviCtrl

Rev

Rev 392 | 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"
119 killagreg 67
#include "timer1.h"
68
#include "timer2.h"
134 killagreg 69
#include "analog.h"
41 ingob 70
#include "spi_slave.h"
71
#include "fat16.h"
72
#include "usb.h"
73
#include "sdc.h"
82 killagreg 74
#include "logging.h"
156 killagreg 75
#include "params.h"
88 killagreg 76
#include "settings.h"
154 killagreg 77
#include "config.h"
1 ingob 78
#include "main.h"
250 ingob 79
#include "debug.h"
254 killagreg 80
#include "eeprom.h"
350 holgerb 81
#include "ssc.h"
362 holgerb 82
#include "sdc.h"
380 holgerb 83
#include "uart1.h"
254 killagreg 84
 
314 killagreg 85
#ifdef FOLLOW_ME
86
u8 TransmitAlsoToFC = 0;
87
#endif
41 ingob 88
u32 TimerCheckError;
234 killagreg 89
u8 ErrorCode = 0;
41 ingob 90
u16 BeepTime;
92 killagreg 91
u8  NCFlags = 0;
153 killagreg 92
s16 GeoMagDec = 0; // local magnetic declination in 0.1 deg
328 holgerb 93
u8 ErrorGpsFixLost = 0;
1 ingob 94
 
255 killagreg 95
u8 ClearFCStatusFlags = 0;
41 ingob 96
u8 StopNavigation = 0;
378 holgerb 97
volatile u32 PollingTimeout = 10000;
41 ingob 98
Param_t Parameter;
78 holgerb 99
volatile FC_t FC;
378 holgerb 100
volatile u32 SPIWatchDog = 15000; // stop Navigation if this goes to zero
362 holgerb 101
volatile u32 SD_WatchDog  = 15000; // stop Logging if this goes to zero
1 ingob 102
 
41 ingob 103
s8 ErrorMSG[25];
104
 
1 ingob 105
//----------------------------------------------------------------------------------------------------
41 ingob 106
void SCU_Config(void)
1 ingob 107
{
41 ingob 108
        /* configure PLL and set it as master clock source */
109
        SCU_MCLKSourceConfig(SCU_MCLK_OSC);             // set master clock source to external oscillator clock (25MHz) before diabling the PLL
110
        SCU_PLLCmd(DISABLE);                                    // now disable the PLL
111
        #ifdef MCLK96MHZ
112
        SCU_BRCLKDivisorConfig(SCU_BRCLK_Div2); // set BRCLK to MCLK/2 = 48MHz
113
        SCU_PCLKDivisorConfig(SCU_PCLK_Div4);   // set PCLK     (APB bus clock) divisor to 4 (half Reference Clock)
114
        SCU_RCLKDivisorConfig(SCU_RCLK_Div2);   // set RCLK     (Reference Clock) divisor to 1 (full PPL clock)
115
        SCU_HCLKDivisorConfig(SCU_HCLK_Div2);   // set HCLK     (AHB bus clock) divisor to 1 (full Reference Clock)
116
        SCU_PLLFactorsConfig(192,25,2);                 // PLL = 96 MHz, Feedback Divider N=192, Pre-Divider M=25, Post-Divider P=2
117
        #else
118
        SCU_BRCLKDivisorConfig(SCU_BRCLK_Div1); // set BRCLK to MCLK = 48MHz
119
        SCU_PCLKDivisorConfig(SCU_PCLK_Div2);   // set PCLK     (APB bus clock) divisor to 2 (half Reference Clock)
120
        SCU_RCLKDivisorConfig(SCU_RCLK_Div1);   // set RCLK     (Reference Clock) divisor to 1 (full PPL clock)
121
        SCU_HCLKDivisorConfig(SCU_HCLK_Div1);   // set HCLK     (AHB bus clock) divisor to 1 (full Reference Clock)
122
        SCU_PLLFactorsConfig(192,25,3);                 // PLL = 48 MHz, Feedback Divider N=192, Pre-Divider M=25, Post-Divider P=3
123
        #endif
124
        SCU_PLLCmd(ENABLE);                                     // Enable PLL (is disabled by SCU_PLLFactorsConfig)
125
        SCU_MCLKSourceConfig(SCU_MCLK_PLL);     // set master clock source to PLL
126
}
1 ingob 127
 
41 ingob 128
//----------------------------------------------------------------------------------------------------
129
void GetNaviCtrlVersion(void)
1 ingob 130
{
41 ingob 131
        u8 msg[25];
270 killagreg 132
 
264 killagreg 133
        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 134
        UART1_PutString(msg);
1 ingob 135
}
136
 
137
//----------------------------------------------------------------------------------------------------
231 holgerb 138
 
41 ingob 139
void CheckErrors(void)
140
{
329 holgerb 141
    static s32 no_error_delay = 0;
328 holgerb 142
        s32 newErrorCode = 0;
232 killagreg 143
        UART_VersionInfo.HardwareError[0] = 0;
231 holgerb 144
 
338 holgerb 145
        if(CheckDelay(I2C1_Timeout) || (Compass_Heading < 0)) DebugOut.StatusRed |= AMPEL_COMPASS;
146
        else DebugOut.StatusRed &= ~AMPEL_COMPASS; // MK3Mag green status
231 holgerb 147
 
338 holgerb 148
        if((FC.Error[1] & FC_ERROR1_I2C) || (FC.Error[1] & FC_ERROR1_BL_MISSING)) DebugOut.StatusRed |= AMPEL_BL;
149
        else DebugOut.StatusRed &= ~AMPEL_BL; // BL-Ctrl green status
232 killagreg 150
 
338 holgerb 151
        if(UART_VersionInfo.HardwareError[0] || UART_VersionInfo.HardwareError[1]) DebugOut.StatusRed |= AMPEL_NC;
152
        else DebugOut.StatusRed &= ~AMPEL_NC;
153
 
392 holgerb 154
    if(FCCalibActive || CompassCalState)
155
     {
156
                sprintf(ErrorMSG,"Calibrate... ");
157
                newErrorCode = 0;
158
                ErrorCode = 0;
159
                no_error_delay = 1;
160
         }
161
        else
146 killagreg 162
        if(CheckDelay(SPI0_Timeout))
41 ingob 163
        {
380 holgerb 164
                LED_RED_ON;              
41 ingob 165
                sprintf(ErrorMSG,"no FC communication ");
328 holgerb 166
                newErrorCode = 3;
41 ingob 167
                StopNavigation = 1;
338 holgerb 168
                DebugOut.StatusGreen &= ~AMPEL_FC; // status of FC Present
169
                DebugOut.StatusGreen &= ~AMPEL_BL; // status of BL Present
256 killagreg 170
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_SPI_RX;
41 ingob 171
        }
229 holgerb 172
        else if(CheckDelay(I2C1_Timeout))
41 ingob 173
        {
368 holgerb 174
                LED_RED_ON;              
380 holgerb 175
                sprintf(ErrorMSG,"no compass communica");
149 killagreg 176
                //Reset I2CBus
177
                I2C1_Deinit();
178
                I2C1_Init();
328 holgerb 179
                newErrorCode = 4;
41 ingob 180
                StopNavigation = 1;
256 killagreg 181
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_RX;
338 holgerb 182
                DebugOut.StatusRed |= AMPEL_COMPASS;
41 ingob 183
        }
184
        else if(FC_Version.Compatible != FC_SPI_COMPATIBLE)
185
        {
186
                LED_RED_ON;
318 holgerb 187
#ifndef FOLLOW_ME
41 ingob 188
                sprintf(ErrorMSG,"FC not compatible ");
318 holgerb 189
#else
190
                sprintf(ErrorMSG,"! FollowMe only ! ");
191
#endif
328 holgerb 192
                newErrorCode = 1;
41 ingob 193
                StopNavigation = 1;
256 killagreg 194
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_FC_INCOMPATIBLE;
338 holgerb 195
                DebugOut.StatusRed |= AMPEL_NC;
41 ingob 196
        }
231 holgerb 197
 
255 killagreg 198
        else if(FC.Error[0] & FC_ERROR0_GYRO_NICK)
231 holgerb 199
        {
200
                LED_RED_ON;
201
                sprintf(ErrorMSG,"ERR: FC Nick Gyro");
328 holgerb 202
                newErrorCode = 10;
232 killagreg 203
        }
255 killagreg 204
        else if(FC.Error[0] & FC_ERROR0_GYRO_ROLL)
231 holgerb 205
        {
206
                LED_RED_ON;
207
                sprintf(ErrorMSG,"ERR: FC Roll Gyro");
328 holgerb 208
                newErrorCode = 11;
232 killagreg 209
        }
255 killagreg 210
        else if(FC.Error[0] & FC_ERROR0_GYRO_YAW)
231 holgerb 211
        {
212
                LED_RED_ON;
213
                sprintf(ErrorMSG,"ERR: FC Yaw Gyro");
328 holgerb 214
                newErrorCode = 12;
232 killagreg 215
        }
255 killagreg 216
        else if(FC.Error[0] & FC_ERROR0_ACC_NICK)
231 holgerb 217
        {
218
                LED_RED_ON;
219
                sprintf(ErrorMSG,"ERR: FC Nick ACC");
328 holgerb 220
                newErrorCode = 13;
232 killagreg 221
        }
255 killagreg 222
        else if(FC.Error[0] & FC_ERROR0_ACC_ROLL)
231 holgerb 223
        {
224
                LED_RED_ON;
225
                sprintf(ErrorMSG,"ERR: FC Roll ACC");
328 holgerb 226
                newErrorCode = 14;
232 killagreg 227
        }
255 killagreg 228
        else if(FC.Error[0] & FC_ERROR0_ACC_TOP)
231 holgerb 229
        {
230
                LED_RED_ON;
327 holgerb 231
                sprintf(ErrorMSG,"ERR:FC Z-ACC");
328 holgerb 232
                newErrorCode = 15;
232 killagreg 233
        }
351 holgerb 234
        else if(NC_To_FC_Flags & NC_TO_FC_FLYING_RANGE)
235
        {
236
                LED_RED_ON;
237
                sprintf(ErrorMSG,"ERR:Flying range!");
238
                newErrorCode = 28;
239
        }
255 killagreg 240
        else if(FC.Error[0] & FC_ERROR0_PRESSURE)
231 holgerb 241
        {
380 holgerb 242
                LED_RED_ON;              
327 holgerb 243
                sprintf(ErrorMSG,"ERR:Pressure sensor");
328 holgerb 244
                newErrorCode = 16;
232 killagreg 245
        }
255 killagreg 246
        else if(FC.Error[1] &  FC_ERROR1_I2C)
231 holgerb 247
        {
248
                LED_RED_ON;
327 holgerb 249
                sprintf(ErrorMSG,"ERR:I2C FC to BL");
328 holgerb 250
                newErrorCode = 17;
232 killagreg 251
        }
255 killagreg 252
        else if(FC.Error[1] &  FC_ERROR1_BL_MISSING)
231 holgerb 253
        {
254
                LED_RED_ON;
255
                sprintf(ErrorMSG,"ERR: Bl Missing");
328 holgerb 256
                newErrorCode = 18;
232 killagreg 257
        }
255 killagreg 258
        else if(FC.Error[1] &  FC_ERROR1_MIXER)
231 holgerb 259
        {
260
                LED_RED_ON;
261
                sprintf(ErrorMSG,"Mixer Error");
328 holgerb 262
                newErrorCode = 19;
232 killagreg 263
        }
350 holgerb 264
        else if(CheckDelay(UBX_Timeout) && Parameter.GlobalConfig & FC_CFG_GPS_AKTIV)
41 ingob 265
        {
266
                LED_RED_ON;
350 holgerb 267
//      if(!(Parameter.GlobalConfig & FC_CFG_GPS_AKTIV)) sprintf(ErrorMSG,"GPS disconnected ");
268
//              else 
380 holgerb 269
                 {                                     
270
                  sprintf(ErrorMSG,"no GPS communication");
320 holgerb 271
                  UART_VersionInfo.HardwareError[0] |= NC_ERROR0_GPS_RX;
328 holgerb 272
              newErrorCode = 5;
320 holgerb 273
                 }
41 ingob 274
                StopNavigation = 1;
320 holgerb 275
//              UBX_Timeout = SetDelay(500);
41 ingob 276
        }
254 killagreg 277
        else if(Compass_Heading < 0)
41 ingob 278
        {
279
                LED_RED_ON;
280
                sprintf(ErrorMSG,"bad compass value ");
328 holgerb 281
                newErrorCode = 6;
41 ingob 282
                StopNavigation = 1;
256 killagreg 283
                UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_VALUE;
41 ingob 284
        }
255 killagreg 285
        else if((FC.Error[1] &  FC_ERROR1_SPI_RX))
199 killagreg 286
        {
287
                LED_RED_ON;
288
                sprintf(ErrorMSG,"FC spi rx error ");
328 holgerb 289
                newErrorCode = 8;
213 killagreg 290
                StopNavigation = 1;
199 killagreg 291
        }
255 killagreg 292
        else if(FC.Error[0] &  FC_ERROR0_CAREFREE)
231 holgerb 293
        {
294
                LED_RED_ON;
295
                sprintf(ErrorMSG,"FC: Carefree Error");
328 holgerb 296
                newErrorCode = 20;
232 killagreg 297
        }
255 killagreg 298
        else if(FC.Error[1] &  FC_ERROR1_PPM)
41 ingob 299
        {
300
                LED_RED_ON;
301
                sprintf(ErrorMSG,"RC Signal lost ");
328 holgerb 302
                newErrorCode = 7;
41 ingob 303
        }
328 holgerb 304
        else if(ErrorGpsFixLost)
305
        {
306
         LED_RED_ON;
307
         sprintf(ErrorMSG,"GPS Fix lost    ");
308
         newErrorCode = 21;
309
        }
330 holgerb 310
        else if(ErrorDisturbedEarthMagnetField)
311
        {
312
         LED_RED_ON;
313
         sprintf(ErrorMSG,"Magnet error    ");
314
         newErrorCode = 22;
338 holgerb 315
         DebugOut.StatusRed |= AMPEL_COMPASS | AMPEL_NC;
316
         UART_VersionInfo.HardwareError[0] |= NC_ERROR0_COMPASS_VALUE;
330 holgerb 317
        }
338 holgerb 318
        else if(BL_MinOfMaxPWM == 40 && (FC.StatusFlags & FC_STATUS_FLY) && !ErrorCode)
319
        {
320
         LED_RED_ON;
321
         sprintf(ErrorMSG,"ERR:Motor restart  ");
322
         newErrorCode = 23;
323
         DebugOut.StatusRed |= AMPEL_BL;
324
        }
325
        else if(BL_MinOfMaxPWM != 255 && (FC.StatusFlags & FC_STATUS_FLY) && !ErrorCode)
326
        {
327
         LED_RED_ON;
328
         sprintf(ErrorMSG,"ERR:BL Limitation   ");
329
         newErrorCode = 24;
330
         DebugOut.StatusRed |= AMPEL_BL;
331
        }
348 holgerb 332
        else if(NCFlags & NC_FLAG_RANGE_LIMIT && (FC.StatusFlags & FC_STATUS_FLY) && !ErrorCode)
333
        {
334
         LED_RED_ON;
351 holgerb 335
         sprintf(ErrorMSG,"ERR:GPS range  ");
348 holgerb 336
         newErrorCode = 25;
337
         DebugOut.StatusRed |= AMPEL_NC;
338
        }
350 holgerb 339
        else if(!SD_SWITCH && Parameter.GlobalConfig3 & CFG3_NO_SDCARD_NO_START)
340
        {
341
         LED_RED_ON;
342
         sprintf(ErrorMSG,"ERR:No SD-Card  ");
343
         newErrorCode = 26;
344
         DebugOut.StatusRed |= AMPEL_NC;
345
        }
383 holgerb 346
        else if((SD_LoggingError || (SD_WatchDog < 2000 && SD_WatchDog != 0)) && Parameter.GlobalConfig3 & CFG3_NO_SDCARD_NO_START)
351 holgerb 347
        {
368 holgerb 348
         LED_RED_ON;       
380 holgerb 349
         sprintf(ErrorMSG,"ERR:SD Logging abort");
351 holgerb 350
         newErrorCode = 27;
351
         DebugOut.StatusRed |= AMPEL_NC;
352
         SD_LoggingError = 0;
353
        }
355 holgerb 354
        else if(((AbsoluteFlyingAltitude) && (NaviData.Altimeter / 20 >= AbsoluteFlyingAltitude)) && (FC.StatusFlags & FC_STATUS_FLY))
355
        {
356
         LED_RED_ON;
357
         sprintf(ErrorMSG,"ERR:Max Altitude ");
358
         newErrorCode = 29;
359
         DebugOut.StatusRed |= AMPEL_NC;
360
        }
41 ingob 361
        else // no error occured
362
        {
363
                StopNavigation = 0;
364
                LED_RED_OFF;
328 holgerb 365
                if(no_error_delay) { no_error_delay--;  }
366
                else
380 holgerb 367
                 {                                     
368
                  sprintf(ErrorMSG,"No Error            ");
328 holgerb 369
                  ErrorCode = 0;
370
                 }
41 ingob 371
        }
328 holgerb 372
 
373
    if(newErrorCode)
374
         {
339 holgerb 375
          if(FC.StatusFlags & FC_STATUS_MOTOR_RUN) no_error_delay = 8; // delay the errors if the motors are running
328 holgerb 376
          ErrorCode = newErrorCode;
377
         }
378
 FC.Error[0] = 0;
379
 FC.Error[1] = 0;
380
 FC.Error[2] = 0;
381
 FC.Error[3] = 0;
382
 FC.Error[4] = 0;
383
 ErrorGpsFixLost = 0;
41 ingob 384
}
24 StephanB 385
 
378 holgerb 386
 
387
 
388
void Polling(void)
389
{
390
 static u8 running = 0;
391
 if(running) return;
392
 running = 1;
393
                SPI0_UpdateBuffer();    // also calls the GPS-functions
394
                UART0_ProcessRxData();  // GPS process request
395
                UART0_TransmitTxData(); // GPS send answer
380 holgerb 396
                UART1_ProcessRxData();  // PC process request
378 holgerb 397
                UART1_TransmitTxData(); // PC send answer
398
                UART2_TransmitTxData(); // FC send answer
399
                CalcHeadFree();
380 holgerb 400
                // ---------------- Error Check Timing ----------------------------
401
                if(CheckDelay(TimerCheckError))
402
                {
403
                        TimerCheckError = SetDelay(1000);
404
                        if(CheckDelay(SPI0_Timeout) && (DebugUART == UART1)) GPS_Navigation(&GPSData, &(ToFlightCtrl.GPSStick)); // process the GPS data even if the FC is not connected
405
 
406
                        if(!CheckDelay(SPI0_Timeout) || (DebugUART == UART1)) CheckErrors();
407
 
408
                        if(FC.StatusFlags & FC_STATUS_FLY) NaviData.FlyingTime++; // we want to count the battery-time
409
//                      else NaviData.FlyingTime = 0; // not the time per flight
410
                        if(SerialLinkOkay) SerialLinkOkay--;
411
                        if(SerialLinkOkay < 250 - 5) NCFlags |= NC_FLAG_NOSERIALLINK; // 5 seconds timeout for serial communication
412
                        else NCFlags &= ~NC_FLAG_NOSERIALLINK;
413
                        if(StopNavigation && (Parameter.NaviGpsModeControl >=  50) && (Parameter.GlobalConfig & FC_CFG_GPS_AKTIV)) BeepTime = 1000;
414
                }
378 holgerb 415
 running = 0;
416
}
417
 
380 holgerb 418
// the handler will be cyclic called by the timer 1 ISR
419
// used is for critical timing parts that normaly would handled
420
// within the main loop that could block longer at logging activities
154 killagreg 421
void EXTIT3_IRQHandler(void)
422
{
195 killagreg 423
        IENABLE;
154 killagreg 424
        VIC_ITCmd(EXTIT3_ITLine,DISABLE); // disable irq
292 killagreg 425
        Compass_Update();               // update compass communication
154 killagreg 426
        Analog_Update();                // get new ADC values
378 holgerb 427
 
380 holgerb 428
        if(!PollingTimeout)
429
        {
430
                PollingTimeout = 5;
431
                Polling();
432
        }
378 holgerb 433
 
434
        VIC_SWITCmd(EXTIT3_ITLine,DISABLE); // clear pending bit
195 killagreg 435
        VIC_ITCmd(EXTIT3_ITLine, ENABLE); // enable irq
436
        IDISABLE;
378 holgerb 437
        VIC1->VAR = 0xFF; // write any value to VIC0 Vector address register
154 killagreg 438
}
439
 
41 ingob 440
//----------------------------------------------------------------------------------------------------
441
int main(void)
442
{
324 killagreg 443
        /*
444
        static u32 ftimer =0;
445
        static u8 fstate = 0;
446
        static File_t* f = NULL;
447
        */
448
 
41 ingob 449
        /* Configure the system clocks */
450
        SCU_Config();
451
        /* init VIC (Vectored Interrupt Controller)     */
452
        SCU_AHBPeriphClockConfig(__VIC,ENABLE); // enable AHB bus clock for VIC
453
        SCU_AHBPeriphReset(__VIC, DISABLE);             // disable reset state for VIC
454
        VIC_DeInit();                                                   // deinitializes the VIC module registers to their default reset values.
196 killagreg 455
        VIC_InitDefaultVectors();
456
 
119 killagreg 457
        // initialize timer 1 for System Clock and delay rountines
41 ingob 458
        TIMER1_Init();
459
        // initialize the LEDs (needs Timer 1)
460
        Led_Init();
461
        // initialize the debug UART1
462
        UART1_Init();
110 killagreg 463
        UART1_PutString("\r\n---------------------------------------------");
275 killagreg 464
        // initialize usb
465
        USB_ConfigInit();
120 killagreg 466
        // initialize timer 2 for servo outputs
180 killagreg 467
        //TIMER2_Init();
41 ingob 468
        // initialize UART2 to FLIGHTCTRL
469
        UART2_Init();
470
        // initialize UART0 (to MKGPS or MK3MAG)
471
        UART0_Init();
134 killagreg 472
        // initialize adc
473
        Analog_Init();
41 ingob 474
        // initialize SPI0 to FC
475
        SPI0_Init();
242 killagreg 476
        // initialize i2c bus (needs Timer 1)
41 ingob 477
        I2C1_Init();
247 killagreg 478
        // initialize fat16 partition on sd card (needs Timer 1)
41 ingob 479
        Fat16_Init();
156 killagreg 480
        // initialize NC params
481
        NCParams_Init();
88 killagreg 482
        // initialize the settings
483
        Settings_Init();
92 killagreg 484
        // initialize logging (needs settings)
82 killagreg 485
        Logging_Init();
1 ingob 486
 
362 holgerb 487
        LED_GRN_ON;
41 ingob 488
        TimerCheckError = SetDelay(3000);
175 holgerb 489
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++");
110 killagreg 490
        UART1_PutString("\n\r Version information:");
116 killagreg 491
 
41 ingob 492
        GetNaviCtrlVersion();
338 holgerb 493
        DebugOut.StatusGreen = AMPEL_NC | AMPEL_COMPASS; // NC and MK3Mag
494
        DebugOut.StatusRed = 0x00;
149 killagreg 495
 
242 killagreg 496
        Compass_Init();
270 killagreg 497
 
314 killagreg 498
#ifdef FOLLOW_ME
499
        TransmitAlsoToFC = 1;
500
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++");
501
        UART1_PutString("\n\r FOLLOW-ME Transmitter only!");
502
        UART1_PutString("\r\n++++++++++++++++++++++++++++++++++++++++++\r\n\r\n");
503
        TransmitAlsoToFC = 0;
504
#else
150 killagreg 505
        SPI0_GetFlightCtrlVersion();
506
        if(FC_Version.Compatible != FC_SPI_COMPATIBLE)
41 ingob 507
        {
150 killagreg 508
                UART1_PutString("\n\r Flight-Ctrl not compatible");
41 ingob 509
                LED_RED_ON;
510
        }
314 killagreg 511
#endif
270 killagreg 512
        GPS_Init();
213 killagreg 513
        // ---------- Prepare the isr driven
154 killagreg 514
        // set to absolute lowest priority
515
    VIC_Config(EXTIT3_ITLine, VIC_IRQ, PRIORITY_SW);
195 killagreg 516
        // enable interrupts
154 killagreg 517
    VIC_ITCmd(EXTIT3_ITLine, ENABLE);
244 killagreg 518
 
250 ingob 519
        Debug_OK("START");
362 holgerb 520
        UART1_PutString("\r\n");
380 holgerb 521
        fifo_purge(&UART1_rx_fifo); // flush the whole fifo init buffer
522
        LED_GRN_ON;
523
        LED_RED_OFF;
154 killagreg 524
        for (;;) // the endless main loop
41 ingob 525
        {
378 holgerb 526
            Polling();
527
                PollingTimeout = 15;
380 holgerb 528
                // ---------------- Logging  ---------------------------------------
529
                if(SD_WatchDog)
362 holgerb 530
                 {
380 holgerb 531
                  SD_WatchDog = 30000;
362 holgerb 532
                  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
533
                  else if(FC.StatusFlags & FC_STATUS_START) SD_LoggingError = 100;
534
                  if(!SD_WatchDog) UART1_PutString("\n\rSD-Watchdog - Logging aborted\n\r");
535
                 }
324 killagreg 536
                /*
380 holgerb 537
 
324 killagreg 538
                if(CheckDelay(ftimer))
539
                {
540
 
541
                        s8* filename = "test.txt";
542
 
543
                        ftimer = SetDelay(100);
544
                        if(FC.Poti[3]>100 && fstate == 0)
545
                        {
546
                                fstate = 1;
547
                        }
548
                        else if(FC.Poti[3]<100 && fstate == 2)
549
                        {
550
                                fstate = 3;
551
                        }
552
 
553
                        switch(fstate)
554
                        {
555
                                case 1:
556
                                        sprintf(text,"\r\nStart writing file: %s", filename);
557
                                        UART1_PutString(text);
558
                                        f = fopen_(filename, 'a');
559
                                        if(f== NULL) Fat16_Init();
560
                                        fstate = 2;
561
                                        break;
562
 
563
                                case 2:
564
                                        fputs_("\r\ntest edins sdv dsivbds iv dsivb disbv idsv bisd bv d suiv dsibsivbdis fbvisdöb visdbvisdb vidbfibds ibv", f);
565
                                        break;
566
 
567
                                case 3:
568
                                        sprintf(text,"\r\nClosing file: %s", filename);
569
                                        UART1_PutString(text);
570
                                        fclose_(f);
571
                                        fstate = 0;
572
                                        break;
573
 
574
                                default:
575
                                        break;
576
                        }
577
                }
578
                */
24 StephanB 579
        }
1 ingob 580
}
581
 
342 holgerb 582
// DebugOut.Analog[]