Subversion Repositories NaviCtrl

Rev

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