Subversion Repositories NaviCtrl

Rev

Go to most recent revision | Details | 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
489 killagreg 10
// + Mikrocontroller verwendete Firmware für die Hardware Flight-Ctrl, Navi-Ctrl, BL-Ctrl, MK3Mag & PC-Programm MikroKopter-Tool
360 holgerb 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
489 killagreg 21
// + Schadens. Die gesetzliche Haftung bei Personenschäden und nach dem Produkthaftungsgesetz bleibt unberührt. Dem Lizenzgeber steht jedoch der Einwand
360 holgerb 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 -
489 killagreg 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
360 holgerb 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
 
57
#include <string.h>
331 holgerb 58
#include <math.h>
489 killagreg 59
#include <stdlib.h>
41 ingob 60
#include "91x_lib.h"
61
#include "led.h"
215 killagreg 62
#include "gps.h"
41 ingob 63
#include "uart1.h"
64
#include "spi_slave.h"
242 killagreg 65
#include "compass.h"
119 killagreg 66
#include "timer1.h"
67
#include "timer2.h"
136 killagreg 68
#include "config.h"
1 ingob 69
#include "main.h"
294 holgerb 70
#include "params.h"
426 holgerb 71
#include "settings.h"
1 ingob 72
 
41 ingob 73
#define SPI_RXSYNCBYTE1 0xAA
74
#define SPI_RXSYNCBYTE2 0x83
75
#define SPI_TXSYNCBYTE1 0x81
76
#define SPI_TXSYNCBYTE2 0x55
1 ingob 77
 
41 ingob 78
//communication packets
215 killagreg 79
FromFlightCtrl_t   FromFlightCtrl;
80
ToFlightCtrl_t     ToFlightCtrl;
397 holgerb 81
#define SPI0_TIMEOUT     2500  //ms
146 killagreg 82
volatile u32 SPI0_Timeout = 0;
338 holgerb 83
u8 Logging_FCStatusFlags1 = 0,Logging_FCStatusFlags2 = 0;
489 killagreg 84
u8 SpeakHoTT = 0;
1 ingob 85
 
41 ingob 86
// tx packet buffer
87
#define SPI_TXBUFFER_LEN (2 + sizeof(ToFlightCtrl)) // 2 bytes at start are for synchronization
378 holgerb 88
volatile u8 SPI_TxBuffer[SPI_TXBUFFER_LEN + 10];
41 ingob 89
volatile u8 SPI_TxBufferIndex = 0;
90
u8 *Ptr_TxChksum = NULL ;  // pointer to checksum in TxBuffer
1 ingob 91
 
41 ingob 92
// rx packet buffer
93
#define SPI_RXBUFFER_LEN sizeof(FromFlightCtrl)
378 holgerb 94
volatile u8 SPI_RxBuffer[SPI_RXBUFFER_LEN+10];
41 ingob 95
volatile u8 SPI_RxBufferIndex = 0;
96
volatile u8 SPI_RxBuffer_Request = 0;
1 ingob 97
#define SPI_COMMAND_INDEX 0
98
 
149 killagreg 99
s32 Kalman_K = 32;
41 ingob 100
s32 Kalman_MaxDrift = 5 * 16;
101
s32 Kalman_MaxFusion = 64;
330 holgerb 102
s32 Kalman_Kompass = 32;
148 holgerb 103
s32 ToFcGpsZ = 0;
392 holgerb 104
u8 CompassCalState = 0;
1 ingob 105
 
419 holgerb 106
u8 SPI_CommandSequence[] = { SPI_NCCMD_KALMAN, SPI_NCCMD_GPSINFO ,SPI_NCCMD_KALMAN, SPI_NCCMD_HOTT_INFO, SPI_NCCMD_KALMAN, SPI_MISC, SPI_NCCMD_KALMAN, SPI_NCCMD_VERSION };
41 ingob 107
u8 SPI_CommandCounter = 0;
222 holgerb 108
s32 ToFC_Rotate_C = 64, ToFC_Rotate_S = 0;
109
s32 HeadFreeStartAngle = 0;
421 holgerb 110
s16 FC_WP_EventChannel = 0, LogFC_WP_EventChannel = 0; // gibt einen Schaltkanal an die FC weiter, wenn der Wegpunkt erreicht wurde
286 killagreg 111
u32 ToFC_AltitudeRate = 0;
285 holgerb 112
s32 ToFC_AltitudeSetpoint = 0;
298 holgerb 113
u8  FromFC_VarioCharacter = ' ';
331 holgerb 114
u8 GPS_Aid_StickMultiplikator = 0;
323 holgerb 115
u8 NC_GPS_ModeCharacter = ' ';
329 holgerb 116
u8 FCCalibActive = 0;
330 holgerb 117
u8 FC_is_Calibrated = 0;
358 holgerb 118
Motor_t Motor[12];
471 holgerb 119
u8 Motor_Version[12]; // das kann nicht in die struct, weil der PC die Struktur bekommt
351 holgerb 120
u8 NC_To_FC_Flags = 0;
338 holgerb 121
u8 BL_MinOfMaxPWM;  // indication if all BL-controllers run on full power
122
u32 FC_I2C_ErrorConter;
41 ingob 123
SPI_Version_t FC_Version;
351 holgerb 124
s16 POI_KameraNick = 0;
460 holgerb 125
u8 NC_Wait_for_LED = 0;
463 holgerb 126
s16 GyroCompassCorrected = 0; // corrected with the magnetic declination
510 holgerb 127
s16 CompassSetpointCorrected = 0; // The compass setpoint that the FC tries to keep - corrected with the magnetic declination
128
s16 CompassSetpoint = 0;          // in 0,1°
1 ingob 129
 
41 ingob 130
//--------------------------------------------------------------
131
void SSP0_IRQHandler(void)
132
{
133
        static u8 rxchksum = 0;
134
        u8 rxdata;
1 ingob 135
 
189 killagreg 136
        #define SPI_SYNC1       0
137
        #define SPI_SYNC2       1
138
        #define SPI_DATA        2
139
        static u8 SPI_State = SPI_SYNC1;
378 holgerb 140
        //IENABLE;
189 killagreg 141
 
161 killagreg 142
        // clear pending bits
41 ingob 143
        SSP_ClearITPendingBit(SSP0, SSP_IT_RxTimeOut);
144 killagreg 144
        SSP_ClearITPendingBit(SSP0, SSP_IT_RxFifo);
189 killagreg 145
 
79 killagreg 146
        // while RxFIFO not empty
378 holgerb 147
        while(SSP_GetFlagStatus(SSP0, SSP_FLAG_RxFifoNotEmpty) == SET)
79 killagreg 148
        {
41 ingob 149
                rxdata =  SSP0->DR; // catch the received byte
150
                // Fill TxFIFO while its not full or end of packet is reached
378 holgerb 151
                while (SSP_GetFlagStatus(SSP0, SSP_FLAG_TxFifoNotFull) == SET)
161 killagreg 152
                {
79 killagreg 153
                        if (SPI_TxBufferIndex  < SPI_TXBUFFER_LEN)   // still data to send ?
154
                        {
41 ingob 155
                                SSP0->DR = SPI_TxBuffer[SPI_TxBufferIndex];       // send a byte
79 killagreg 156
                                *Ptr_TxChksum += SPI_TxBuffer[SPI_TxBufferIndex]; // update checksum
378 holgerb 157
                                if(SPIWatchDog == 0) *Ptr_TxChksum += 1; // disturbe this packet to stop the communication!
79 killagreg 158
                                SPI_TxBufferIndex++; // pointer to next byte
159
                        }
160
                        else // end of packet is reached reset and copy data to tx buffer
161
                        {
162
                                SPI_TxBufferIndex = 0;  // reset buffer index
163
                                ToFlightCtrl.Chksum = 0;  // initialize checksum
164
                                ToFlightCtrl.BeepTime = BeepTime;  // set beeptime
165
                                BeepTime = 0; // reset local beeptime
41 ingob 166
                                // copy contents of ToFlightCtrl->SPI_TxBuffer
79 killagreg 167
                                memcpy((u8 *) &(SPI_TxBuffer[2]), (u8 *) &ToFlightCtrl, sizeof(ToFlightCtrl));
168
                        }
41 ingob 169
                }
170
                switch (SPI_State)
171
                {
172
                        case SPI_SYNC1:
173
                                SPI_RxBufferIndex = 0; // reset buffer index
174
                                rxchksum = rxdata;     // init checksum
175
                                if (rxdata == SPI_RXSYNCBYTE1)
176
                                {   // 1st syncbyte ok
177
                                        SPI_State = SPI_SYNC2;  // step to sync2
178
                                }
179
                                break;
79 killagreg 180
                        case SPI_SYNC2:
41 ingob 181
                                if (rxdata == SPI_RXSYNCBYTE2)
182
                                {  // 2nd Syncbyte ok
183
                                        rxchksum += rxdata;
184
                                        SPI_State = SPI_DATA;
185
                                }  // 2nd Syncbyte does not match
186
                                else
187
                                {
188
                                        SPI_State  = SPI_SYNC1; //jump back to sync1
189
                                }
190
                                break;
191
                        case SPI_DATA:
192
                                SPI_RxBuffer[SPI_RxBufferIndex++]= rxdata; // copy databyte to rx buffer
378 holgerb 193
                                if(SPI_RxBufferIndex >= SPI_RXBUFFER_LEN)  // end of packet is reached
41 ingob 194
                                {
195
                                        if (rxdata == rxchksum) // verify checksum byte
196
                                        {
197
                                                // copy SPI_RxBuffer -> FromFlightCtrl
198
                                                if(!SPI_RxBuffer_Request) // block writing to FromFlightCtrl on reading access
199
                                                {
200
                                                        memcpy((u8 *) &FromFlightCtrl, (u8 *) SPI_RxBuffer, sizeof(FromFlightCtrl));
201
                                                        SPI_RxBuffer_Request = 1;
202
                                                }
146 killagreg 203
                                                // reset timeout counter on good packet
204
                                                SPI0_Timeout = SetDelay(SPI0_TIMEOUT);
41 ingob 205
                                                DebugOut.Analog[13]++;
206
                                        }
207
                                        else // bad checksum byte
208
                                        {
209
                                                DebugOut.Analog[12]++; // increase SPI chksum error counter
210
                                        }
211
                                        SPI_State  = SPI_SYNC1; // reset state
212
                                }
213
                                else // end of packet not reached
214
                                {
215
                                        rxchksum += rxdata;      // update checksum
216
                                }
217
                                break;
218
                        default:
219
                                SPI_State  = SPI_SYNC1;
220
                                break;
221
                }
222
        }
195 killagreg 223
 
378 holgerb 224
//      IDISABLE;
225
        VIC1->VAR = 0xFF; // write any value to VIC0 Vector address register
1 ingob 226
}
227
 
228
//--------------------------------------------------------------
229
void SPI0_Init(void)
230
{
41 ingob 231
        GPIO_InitTypeDef GPIO_InitStructure;
232
        SSP_InitTypeDef   SSP_InitStructure;
1 ingob 233
 
110 killagreg 234
        UART1_PutString("\r\n SPI init...");
1 ingob 235
 
41 ingob 236
        SCU_APBPeriphClockConfig(__GPIO2 ,ENABLE);
237
        SCU_APBPeriphClockConfig(__SSP0 ,ENABLE);
1 ingob 238
 
41 ingob 239
        GPIO_DeInit(GPIO2);
240
        //SSP0_CLK, SSP0_MOSI, SSP0_NSS pins
241
        GPIO_StructInit(&GPIO_InitStructure);
242
        GPIO_InitStructure.GPIO_Direction = GPIO_PinInput;
243
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_7;
244
        GPIO_InitStructure.GPIO_Type = GPIO_Type_PushPull ;
196 killagreg 245
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Enable;
41 ingob 246
        GPIO_InitStructure.GPIO_Alternate = GPIO_InputAlt1; //SSP0_SCLK, SSP0_MOSI, SSP0_NSS
247
        GPIO_Init (GPIO2, &GPIO_InitStructure);
1 ingob 248
 
41 ingob 249
        // SSP0_MISO pin GPIO2.6
250
        GPIO_StructInit(&GPIO_InitStructure);
251
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
252
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
253
        GPIO_InitStructure.GPIO_Type = GPIO_Type_PushPull ;
196 killagreg 254
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Enable;
41 ingob 255
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt2; //SSP0_MISO
256
        GPIO_Init (GPIO2, &GPIO_InitStructure);
1 ingob 257
 
41 ingob 258
        SSP_DeInit(SSP0);
259
        SSP_StructInit(&SSP_InitStructure);
260
        SSP_InitStructure.SSP_FrameFormat = SSP_FrameFormat_Motorola;
261
        SSP_InitStructure.SSP_Mode = SSP_Mode_Slave;
262
        SSP_InitStructure.SSP_SlaveOutput = SSP_SlaveOutput_Enable;
263
        SSP_InitStructure.SSP_CPHA = SSP_CPHA_1Edge;
264
        SSP_InitStructure.SSP_CPOL = SSP_CPOL_Low;
265
        SSP_InitStructure.SSP_ClockRate = 0;
1 ingob 266
 
41 ingob 267
        SSP_Init(SSP0, &SSP_InitStructure);
144 killagreg 268
        SSP_ITConfig(SSP0, SSP_IT_RxFifo | SSP_IT_RxTimeOut, ENABLE);
41 ingob 269
        SSP_Cmd(SSP0, ENABLE);
270
        // initialize the syncbytes in the tx buffer
271
        SPI_TxBuffer[0] = SPI_TXSYNCBYTE1;
272
        SPI_TxBuffer[1] = SPI_TXSYNCBYTE2;
273
        // set the pointer to the checksum byte in the tx buffer
274
        Ptr_TxChksum = (u8 *) &(((ToFlightCtrl_t *) &(SPI_TxBuffer[2]))->Chksum);
275
 
215 killagreg 276
        ToFlightCtrl.GPSStick.Nick = 0;
277
        ToFlightCtrl.GPSStick.Roll = 0;
419 holgerb 278
//      ToFlightCtrl.GPSStick.Yaw = 0;
215 killagreg 279
 
136 killagreg 280
        VIC_Config(SSP0_ITLine, VIC_IRQ, PRIORITY_SPI0);
41 ingob 281
        VIC_ITCmd(SSP0_ITLine, ENABLE);
282
 
146 killagreg 283
        SPI0_Timeout = SetDelay(4*SPI0_TIMEOUT);
284
 
110 killagreg 285
        UART1_PutString("ok");
1 ingob 286
}
41 ingob 287
 
222 holgerb 288
 
1 ingob 289
//------------------------------------------------------
41 ingob 290
void SPI0_UpdateBuffer(void)
1 ingob 291
{
180 killagreg 292
        static u32 timeout = 0;
426 holgerb 293
        static u8 counter = 50,hott_index = 0, last_error_code = 0, enable_injecting = 0;
294
        static s16 last_wp_event = 0;
489 killagreg 295
        s16 tmp;
329 holgerb 296
        s32 i1,i2;
462 holgerb 297
/*
298
        union
299
        {
300
                unsigned char Byte[4];
301
                unsigned int Int[2];
302
                unsigned long Long;
303
        } Temp;
489 killagreg 304
*/
378 holgerb 305
    SPIWatchDog = 3500;    // stop communication to FC after this timeout
306
        if(SPI_RxBuffer_Request)
41 ingob 307
        {
308
                // avoid sending data via SPI during the update of the  ToFlightCtrl structure
309
                VIC_ITCmd(SSP0_ITLine, DISABLE); // disable SPI interrupt
254 killagreg 310
                ToFlightCtrl.CompassHeading = Compass_Heading;
189 killagreg 311
                DebugOut.Analog[10] = ToFlightCtrl.CompassHeading;
510 holgerb 312
//GyroCompassCorrected = (3600 + FromFlightCtrl.GyroHeading + FC.FromFC_CompassOffset - GeoMagDec) % 3600;
313
                GyroCompassCorrected = (3600 + FromFlightCtrl.GyroHeading + FC.FromFC_CompassOffset + GeoMagDec) % 3600;
228 holgerb 314
                if(ToFlightCtrl.CompassHeading >= 0) ToFlightCtrl.CompassHeading = (360 + ToFlightCtrl.CompassHeading + FromFlightCtrl.GyroYaw / 12) % 360;
419 holgerb 315
                ToFlightCtrl.MagVecX = MagVector.X;
316
                ToFlightCtrl.MagVecY = MagVector.Y;
286 killagreg 317
                ToFlightCtrl.MagVecZ = MagVector.Z;
419 holgerb 318
//              ToFlightCtrl.NCStatus = 0;
41 ingob 319
                // cycle spi commands
489 killagreg 320
                if(ErrorCode != last_error_code && enable_injecting)
426 holgerb 321
                 {
322
                  ToFlightCtrl.Command = SPI_NCCMD_VERSION;
323
                  last_error_code = ErrorCode;
324
                  enable_injecting = 0;
325
                 }
489 killagreg 326
                else
327
                if(FC_WP_EventChannel != last_wp_event && enable_injecting)
426 holgerb 328
                 {
329
                  ToFlightCtrl.Command = SPI_NCCMD_GPSINFO;
489 killagreg 330
                  last_wp_event = FC_WP_EventChannel;
426 holgerb 331
                  enable_injecting = 0;
332
                 }
489 killagreg 333
                else
420 holgerb 334
                 {
335
                  ToFlightCtrl.Command = SPI_CommandSequence[SPI_CommandCounter++];
118 killagreg 336
                // restart command cycle at the end
420 holgerb 337
                  if(SPI_CommandCounter >= sizeof(SPI_CommandSequence)) SPI_CommandCounter = 0;
426 holgerb 338
                  if(ToFlightCtrl.Command == SPI_NCCMD_KALMAN) enable_injecting = 1;
420 holgerb 339
                 }
419 holgerb 340
 
319 holgerb 341
#define FLAG_GPS_AID 0x01
41 ingob 342
                switch (ToFlightCtrl.Command)
343
                {
329 holgerb 344
                        case  SPI_NCCMD_KALMAN:  // wird am häufigsten betätigt
149 killagreg 345
                                ToFlightCtrl.Param.sByte[0] = (s8) Kalman_K;
92 killagreg 346
                                ToFlightCtrl.Param.sByte[1] = (s8) Kalman_MaxFusion;
347
                                ToFlightCtrl.Param.sByte[2] = (s8) Kalman_MaxDrift;
330 holgerb 348
                                ToFlightCtrl.Param.Byte[3]      = (u8) Kalman_Kompass;
149 killagreg 349
                                ToFlightCtrl.Param.sByte[4] = (s8) ToFcGpsZ;
222 holgerb 350
                                ToFlightCtrl.Param.Byte[5] = (s8) ToFC_Rotate_C;
223 killagreg 351
                                ToFlightCtrl.Param.Byte[6] = (s8) ToFC_Rotate_S;
331 holgerb 352
                ToFlightCtrl.Param.Byte[7] = GPS_Aid_StickMultiplikator;
280 killagreg 353
                                if(CAM_Orientation.UpdateMask & CAM_UPDATE_AZIMUTH)
278 killagreg 354
                                {
355
                                        ToFlightCtrl.Param.sInt[4] = CAM_Orientation.Azimuth;
280 killagreg 356
                                        CAM_Orientation.UpdateMask &= ~CAM_UPDATE_AZIMUTH;
278 killagreg 357
                                }
358
                                else
280 killagreg 359
                                {
278 killagreg 360
                                        ToFlightCtrl.Param.sInt[4] = -1;
361
                                }
294 holgerb 362
 
299 killagreg 363
                                if(NCRARAM_STATE_VALID == NCParams_GetValue(NCPARAMS_NEW_CAMERA_ELEVATION, &tmp))  // Elevation set via 'j' command
295 killagreg 364
                                {
351 holgerb 365
                                        POI_KameraNick = tmp;
299 killagreg 366
                                }
367
                                else
368
                                {
348 holgerb 369
                                        //if(FC.StatusFlags2 & FC_STATUS2_CAREFREE) // only, if carefree is active
489 killagreg 370
                                        POI_KameraNick = CAM_Orientation.Elevation;
348 holgerb 371
                                        //else ToFlightCtrl.Param.sInt[5] = 0;
295 killagreg 372
                                }
351 holgerb 373
                                ToFlightCtrl.Param.sInt[5] = POI_KameraNick;
161 killagreg 374
                                break;
58 killagreg 375
 
202 killagreg 376
                        case SPI_NCCMD_VERSION:
355 holgerb 377
                                //+++++++++++++++++++++++++++++++++++++++++++++++++++
378
                        //+ higher than the maximum allowed altitude
379
                                //+++++++++++++++++++++++++++++++++++++++++++++++++++
202 killagreg 380
                                ToFlightCtrl.Param.Byte[0] = VERSION_MAJOR;
381
                                ToFlightCtrl.Param.Byte[1] = VERSION_MINOR;
204 killagreg 382
                                ToFlightCtrl.Param.Byte[2] = VERSION_PATCH;
202 killagreg 383
                                ToFlightCtrl.Param.Byte[3] = FC_SPI_COMPATIBLE;
264 killagreg 384
                                ToFlightCtrl.Param.Byte[4] = Version_HW;
338 holgerb 385
                                ToFlightCtrl.Param.Byte[5] = DebugOut.StatusGreen;
386
                                ToFlightCtrl.Param.Byte[6] = DebugOut.StatusRed;
454 holgerb 387
                                ToFlightCtrl.Param.Byte[7] = ErrorCode;                          // muss in SPI_NCCMD_VERSION bleiben! (siehe oben)
323 holgerb 388
                                ToFlightCtrl.Param.Byte[8] = NC_GPS_ModeCharacter;
330 holgerb 389
                                ToFlightCtrl.Param.Byte[9] = SerialLinkOkay;
351 holgerb 390
                                ToFlightCtrl.Param.Byte[10] = NC_To_FC_Flags;
355 holgerb 391
                                if(AbsoluteFlyingAltitude > 255) ToFlightCtrl.Param.Byte[11] = 0; // then the limitation of the FC doesn't work
392
                                else ToFlightCtrl.Param.Byte[11] = AbsoluteFlyingAltitude;
202 killagreg 393
                                break;
342 holgerb 394
                        case SPI_MISC:
395
                                ToFlightCtrl.Param.Byte[0] = EarthMagneticFieldFiltered/5;
396
                                ToFlightCtrl.Param.Byte[1] = EarthMagneticInclination;
397
                                ToFlightCtrl.Param.Byte[2] = EarthMagneticInclinationTheoretic;
397 holgerb 398
                                ToFlightCtrl.Param.Byte[3] = SpeakHoTT;
419 holgerb 399
                                ToFlightCtrl.Param.Byte[4] = NaviData.WaypointIndex; // index of current waypoints running from 0 to WaypointNumber-1
400
                                ToFlightCtrl.Param.Byte[5] = NaviData.WaypointNumber; // number of stored waypoints
401
                                ToFlightCtrl.Param.Int[3] =  NaviData.TargetPositionDeviation.Distance / 10;
402
                                ToFlightCtrl.Param.Byte[8] = NaviData.TargetHoldTime; // time in s to stay at the given target, counts down to 0 if target has been reached
503 holgerb 403
                                ToFlightCtrl.Param.Byte[9] = ToFC_MaxWpListIndex;
507 holgerb 404
                                ToFlightCtrl.Param.sInt[5] = GyroCompassCorrected / 10; // Bytes 10 & 11
397 holgerb 405
                                SpeakHoTT = 0;
342 holgerb 406
                                break;
223 killagreg 407
 
204 killagreg 408
                        case SPI_NCCMD_GPSINFO:
409
                                ToFlightCtrl.Param.Byte[0] = GPSData.Flags;
410
                                ToFlightCtrl.Param.Byte[1] = GPSData.NumOfSats;
411
                                ToFlightCtrl.Param.Byte[2] = GPSData.SatFix;
232 killagreg 412
                                ToFlightCtrl.Param.Byte[3] = GPSData.Speed_Ground / 100; // m/s
258 holgerb 413
                                ToFlightCtrl.Param.Int[2]  = NaviData.HomePositionDeviation.Distance; // dm   //4&5
414
                                ToFlightCtrl.Param.sInt[3] = NaviData.HomePositionDeviation.Bearing;  // deg  //6&7
454 holgerb 415
                                if(FC_WP_EventChannel > 254) FC_WP_EventChannel = 254;    // Muss in SPI_NCCMD_GPSINFO bleiben! (siehe oben)
421 holgerb 416
                                if(FC_WP_EventChannel) LogFC_WP_EventChannel = FC_WP_EventChannel; // to make sure that it will be logged
457 holgerb 417
  // ++++++++++++++++++++++++++++++++++
418
  // Waypoint event +++++++++++++++++++
419
  // ++++++++++++++++++++++++++++++++++
420
                                if(NCRARAM_STATE_VALID == NCParams_GetValue(NCPARAMS_WP_EVENT_ONCE, &tmp))
421
                                {
422
                                        ToFlightCtrl.Param.Byte[8] = (s8)(tmp - 127);
423
                                        NCParams_ClearValue(NCPARAMS_WP_EVENT_ONCE);
424
                                        NCParams_ClearValue(NCPARAMS_WP_EVENT_FOREVER);
425
                                }
426
                                else
427
                                if(NCRARAM_STATE_VALID == NCParams_GetValue(NCPARAMS_WP_EVENT_FOREVER, &tmp))
428
                                {
429
                                        ToFlightCtrl.Param.Byte[8] = (s8)(tmp - 127);
430
                                        if(tmp == 0) NCParams_ClearValue(NCPARAMS_WP_EVENT_FOREVER);
431
                                }
432
                                else ToFlightCtrl.Param.Byte[8] = (s8)(FC_WP_EventChannel - 127);
419 holgerb 433
                                FC_WP_EventChannel = 0; // the GPS-Routine will set it again
457 holgerb 434
  // ++++++++++++++++++++++++++++++++++
299 killagreg 435
                                if(NCRARAM_STATE_VALID == NCParams_GetValue(NCPARAMS_ALTITUDE_RATE, &tmp))
436
                                {
437
                                        ToFlightCtrl.Param.Byte[9] = (u8)tmp;
295 killagreg 438
                                }
299 killagreg 439
                                else
440
                                {
441
                                        ToFlightCtrl.Param.Byte[9] = (u8)ToFC_AltitudeRate;
442
                                }
443
                                if(NCRARAM_STATE_VALID == NCParams_GetValue(NCPARAMS_ALTITUDE_SETPOINT, &tmp))
444
                                {
445
                                        ToFlightCtrl.Param.sInt[5] = tmp;
446
                                }
447
                                else
448
                                {
449
                                        ToFlightCtrl.Param.sInt[5] = (s16)ToFC_AltitudeSetpoint;
450
                                }
204 killagreg 451
                                break;
330 holgerb 452
                        case SPI_NCCMD_HOTT_INFO:
504 holgerb 453
                            if(NewWPL_Name) hott_index = 100;
330 holgerb 454
                                switch(hott_index++)
455
                                {
329 holgerb 456
                                case 0:
457
                                        //Dezimalgrad            --> Grad mit Dezimalminuten     --> Grad, Minuten, Sekunden
489 killagreg 458
                                        //53.28 5788 7.4847269   --> N53° 17.14728 E7° 29.08362  --> N53° 17' 8.837" E7° 29' 5.017"
329 holgerb 459
                                        ToFlightCtrl.Param.Byte[11] = HOTT_GPS_PACKET_ID;
397 holgerb 460
                                        ToFlightCtrl.Param.Byte[0] = 3+3;       // index  +3, weil bei HoTT V4 3 Bytes eingeschoben wurden
329 holgerb 461
                                        ToFlightCtrl.Param.Byte[1] = 9-1;       // how many
462
                                        //-----------------------------
489 killagreg 463
                                        ToFlightCtrl.Param.Byte[2] = GyroCompassCorrected / 20;//NaviData.HomePositionDeviation.Bearing / 2;
329 holgerb 464
                                        i1 = GPSData.Speed_Ground; // in cm/sec
465
                                        i1 *= 36;
466
                                        i1 /= 1000;
467
                                        ToFlightCtrl.Param.Byte[3] = i1 % 256;
468
                                        ToFlightCtrl.Param.Byte[4] = i1 / 256;
469
                                        //-----------------------------
405 holgerb 470
                                        if(GPSData.Position.Latitude < 0) ToFlightCtrl.Param.Byte[5]  = 1; // 1 = S
329 holgerb 471
                                        else ToFlightCtrl.Param.Byte[5]  = 0; // 1 = S
472
                                        i1 = abs(GPSData.Position.Latitude)/10000000L;
473
                                        i2 = abs(GPSData.Position.Latitude)%10000000L;
397 holgerb 474
                                        if(!(NCFlags & NC_FLAG_GPS_OK)) {i1 = 0; i2 = 0;}
489 killagreg 475
                                        i1 *= 100;
460 holgerb 476
                                // Minuten
477
                                i2 *= 6;
478
                                i2 /= 10;
329 holgerb 479
                                        i1 += i2 / 100000;
480
                                        i2  = i2 % 100000;
481
                                        i2 /= 10;
482
                                        ToFlightCtrl.Param.Byte[6]  = i1 % 256;
483
                                        ToFlightCtrl.Param.Byte[7]  = i1 / 256;
484
                                        ToFlightCtrl.Param.Byte[8]  = i2 % 256;
485
                                        ToFlightCtrl.Param.Byte[9]  = i2 / 256;
486
                                        break;
487
                                case 1:
488
                                        ToFlightCtrl.Param.Byte[11] = HOTT_GPS_PACKET_ID;
397 holgerb 489
                                        ToFlightCtrl.Param.Byte[0] = 11+3;      // index          +3, weil bei HoTT V4 3 Bytes eingeschoben wurden
329 holgerb 490
                                        ToFlightCtrl.Param.Byte[1] = 8-1;       // how many
491
                                        //-----------------------------
492
                                        if(GPSData.Position.Longitude < 0) ToFlightCtrl.Param.Byte[2]  = 1; // 1 = E
493
                                        else ToFlightCtrl.Param.Byte[2]  = 0; // 1 = S
494
                                        i1 = abs(GPSData.Position.Longitude)/10000000L;
495
                                        i2 = abs(GPSData.Position.Longitude)%10000000L;
397 holgerb 496
                                        if(!(NCFlags & NC_FLAG_GPS_OK)) {i1 = 0; i2 = 0;}
489 killagreg 497
                                        i1 *= 100;
460 holgerb 498
                                // Minuten
499
                                i2 *= 6;
500
                                i2 /= 10;
329 holgerb 501
                                        i1 += i2 / 100000;
502
                                        i2  = i2 % 100000;
503
                                        i2 /= 10;
504
                                        ToFlightCtrl.Param.Byte[3]  = i1 % 256;
505
                                        ToFlightCtrl.Param.Byte[4]  = i1 / 256;
506
                                        ToFlightCtrl.Param.Byte[5]  = i2 % 256;
507
                                        ToFlightCtrl.Param.Byte[6]  = i2 / 256;
508
                                        //-----------------------------
489 killagreg 509
                                        i1 = NaviData.HomePositionDeviation.Distance / 10; // dann in m
329 holgerb 510
                                        ToFlightCtrl.Param.Byte[7]  = i1 % 256;
511
                                        ToFlightCtrl.Param.Byte[8]  = i1 / 256;
330 holgerb 512
                                        break;
513
                                 case 2:
514
                                        ToFlightCtrl.Param.Byte[11] = HOTT_GENERAL_PACKET_ID;
397 holgerb 515
                                        ToFlightCtrl.Param.Byte[0] = 5+3;       // index   // +3, weil bei HoTT V4 3 Bytes eingeschoben wurden
330 holgerb 516
                                        ToFlightCtrl.Param.Byte[1] = 2; // how many
489 killagreg 517
                                        ToFlightCtrl.Param.Byte[2] = EarthMagneticField / (5 * 2);
330 holgerb 518
                                        ToFlightCtrl.Param.Byte[3] = EarthMagneticInclination / 2;
329 holgerb 519
                                        break;
462 holgerb 520
                                 case 3:
521
                                        ToFlightCtrl.Param.Byte[11] = JETI_GPS_PACKET_ID1;
489 killagreg 522
                                        ToFlightCtrl.Param.Byte[0] = 0; // index
462 holgerb 523
                                        ToFlightCtrl.Param.Byte[1] = 4; // how many
524
                                        //JetiExData[14].Value =  53 * 0x10000 + 23467;
489 killagreg 525
                                        if(GPSData.Position.Latitude < 0) ToFlightCtrl.Param.Byte[5] = 0x40;
526
                                        else ToFlightCtrl.Param.Byte[5] = 0x00;
462 holgerb 527
                                        ToFlightCtrl.Param.Byte[4] = abs(GPSData.Position.Latitude)/10000000L;
528
                                        i2 = abs(GPSData.Position.Latitude)%10000000L;
529
                                        i2 *= 6;
530
                                        i2 /= 1000;
531
                                        ToFlightCtrl.Param.Byte[3] = i2 / 256;
532
                                        ToFlightCtrl.Param.Byte[2] = i2 % 256;
533
                                        break;
534
                                 case 4:
535
                                        ToFlightCtrl.Param.Byte[11] = JETI_GPS_PACKET_ID2;
489 killagreg 536
                                        ToFlightCtrl.Param.Byte[0] = 0; // index
462 holgerb 537
                                        ToFlightCtrl.Param.Byte[1] = 4; // how many
489 killagreg 538
                                        if(GPSData.Position.Latitude < 0) ToFlightCtrl.Param.Byte[5] = 0x60;
539
                                        else ToFlightCtrl.Param.Byte[5] = 0x20;
462 holgerb 540
                                        ToFlightCtrl.Param.Byte[4] = abs(GPSData.Position.Longitude)/10000000L;
541
                                        i2 = abs(GPSData.Position.Longitude)%10000000L;
542
                                        i2 *= 6;
543
                                        i2 /= 1000;
544
                                        ToFlightCtrl.Param.Byte[3] = i2 / 256;
545
                                        ToFlightCtrl.Param.Byte[2] = i2 % 256;
546
                        hott_index = 0;
547
                                        break;
504 holgerb 548
 
549
                                        case 100:
550
                                        ToFlightCtrl.Param.Byte[11] = HOTT_WPL_NAME;
551
                                        ToFlightCtrl.Param.Byte[0] = 0; // index
552
                                        ToFlightCtrl.Param.Byte[2] = WPL_Store.Name[0];
553
                                        ToFlightCtrl.Param.Byte[3] = WPL_Store.Name[1];
554
                                        ToFlightCtrl.Param.Byte[4] = WPL_Store.Name[2];
555
                                        ToFlightCtrl.Param.Byte[5] = WPL_Store.Name[3];
556
                                        ToFlightCtrl.Param.Byte[6] = WPL_Store.Name[4];
557
                                        ToFlightCtrl.Param.Byte[7] = WPL_Store.Name[5];
558
                                        ToFlightCtrl.Param.Byte[8] = WPL_Store.Name[6];
559
                                        ToFlightCtrl.Param.Byte[9] = WPL_Store.Name[7];
560
                                        ToFlightCtrl.Param.Byte[10]= WPL_Store.Name[8];
561
                                        ToFlightCtrl.Param.Byte[1] = 9; // how many
562
                                        NewWPL_Name = 0;
563
                                        hott_index = 0;
564
                                        break;
489 killagreg 565
                                 default:
330 holgerb 566
                                        ToFlightCtrl.Param.Byte[0] = 255;
489 killagreg 567
                                        hott_index = 0;
330 holgerb 568
                                        break;
329 holgerb 569
                                }
570
                                break;
41 ingob 571
                        default:
572
                                break;
285 holgerb 573
// 0 = 0,1
574
// 1 = 2,3
575
// 2 = 4,5
576
// 3 = 6,7
577
// 4 = 8,9
578
// 5 = 10,11
41 ingob 579
                }
580
                VIC_ITCmd(SSP0_ITLine, ENABLE);         // enable SPI interrupt
581
                switch(FromFlightCtrl.Command)
582
                {
202 killagreg 583
                        case SPI_FCCMD_USER:
41 ingob 584
                                Parameter.User1 = FromFlightCtrl.Param.Byte[0];
585
                                Parameter.User2 = FromFlightCtrl.Param.Byte[1];
586
                                Parameter.User3 = FromFlightCtrl.Param.Byte[2];
587
                                Parameter.User4 = FromFlightCtrl.Param.Byte[3];
588
                                Parameter.User5 = FromFlightCtrl.Param.Byte[4];
589
                                Parameter.User6 = FromFlightCtrl.Param.Byte[5];
590
                                Parameter.User7 = FromFlightCtrl.Param.Byte[6];
591
                                Parameter.User8 = FromFlightCtrl.Param.Byte[7];
255 killagreg 592
                                if(ClearFCStatusFlags)
41 ingob 593
                                {
255 killagreg 594
                                        FC.StatusFlags = 0;
595
                                        ClearFCStatusFlags = 0;
41 ingob 596
                                }
255 killagreg 597
                                FC.StatusFlags |= FromFlightCtrl.Param.Byte[8];
320 holgerb 598
                                if(FC.StatusFlags & FC_STATUS_CALIBRATE && !FCCalibActive)
268 killagreg 599
                                {
510 holgerb 600
//                                      HeadFreeStartAngle = (3600 + Compass_Heading * 10 - GeoMagDec) % 3600;
601
                                        HeadFreeStartAngle = (3600 + Compass_Heading * 10 + GeoMagDec) % 3600;
268 killagreg 602
                                        Compass_Init();
330 holgerb 603
                                        FCCalibActive = 10;
338 holgerb 604
                                        FC_is_Calibrated = 0;
268 killagreg 605
                                }
606
                                else
607
                                {
489 killagreg 608
                                        if(FCCalibActive)
609
                                        {
610
                                                if(--FCCalibActive == 0)
611
                                                {
612
                                                        FC_is_Calibrated = 1;
613
                                                        Compass_Check();
614
                                                }
615
                                        }
268 killagreg 616
                                }
489 killagreg 617
                                if(FC.StatusFlags & FC_STATUS_START)
618
                                {
510 holgerb 619
//                                      if(Compass_Heading != -1) HeadFreeStartAngle = (3600 + Compass_Heading * 10 - GeoMagDec) % 3600; else
620
                                        if(Compass_Heading != -1) HeadFreeStartAngle = (3600 + Compass_Heading * 10 + GeoMagDec) % 3600;
621
                                        else HeadFreeStartAngle = GyroCompassCorrected;
489 killagreg 622
                                }
320 holgerb 623
 
489 killagreg 624
                                if((Parameter.ExtraConfig & CFG_TEACHABLE_CAREFREE))
625
                                {
626
                                        if(!(FC.StatusFlags2 & FC_STATUS2_CAREFREE)) // CF ist jetzt ausgeschaltet -> neue Richtung lernen
627
                                        {
628
                                                if((NaviData.HomePositionDeviation.Distance > 200) && (NCFlags & NC_FLAG_GPS_OK))        // nur bei ausreichender Distance -> 20m
629
                                                {
630
                                                        HeadFreeStartAngle = (10 * NaviData.HomePositionDeviation.Bearing + 1800 + 3600 -  Parameter.OrientationAngle * 150) % 3600; // in 0.1°
631
                                                }
632
                                                else                                                                                             // Ansonsten die aktuelle Richtung übernehmen
633
                                                HeadFreeStartAngle = GyroCompassCorrected; // in 0.1°
329 holgerb 634
                                        }
635
                                }
489 killagreg 636
 
223 killagreg 637
                                Parameter.ActiveSetting = FromFlightCtrl.Param.Byte[9];
471 holgerb 638
                                FC.BAT_Voltage = FromFlightCtrl.Param.Byte[10];
480 holgerb 639
                                DebugOut.Analog[7] = FC.BAT_Voltage;
255 killagreg 640
                                DebugOut.Analog[5] = FC.StatusFlags;
360 holgerb 641
                                NaviData.FCStatusFlags = FC.StatusFlags;
489 killagreg 642
                                if(FC.StatusFlags2 & FC_STATUS2_WAIT_FOR_TAKEOFF) NaviData.FCStatusFlags &= ~FC_STATUS_FLY;
294 holgerb 643
                                FC.StatusFlags2 = FromFlightCtrl.Param.Byte[11];
360 holgerb 644
                                NaviData.FCStatusFlags2 = (NaviData.FCStatusFlags2 & (FC_STATUS2_OUT1_ACTIVE | FC_STATUS2_OUT2_ACTIVE)) | (FC.StatusFlags2 & (0xff - (FC_STATUS2_OUT1_ACTIVE | FC_STATUS2_OUT2_ACTIVE)));
645
 
646
                                if((!(LastTransmittedFCStatusFlags2 & FC_STATUS2_OUT1_ACTIVE)) && (FC.StatusFlags2 & FC_STATUS2_OUT1_ACTIVE)) NaviData.FCStatusFlags2 |= FC_STATUS2_OUT1_ACTIVE;
489 killagreg 647
                                else
360 holgerb 648
                                if(((LastTransmittedFCStatusFlags2 & FC_STATUS2_OUT1_ACTIVE)) && !(FC.StatusFlags2 & FC_STATUS2_OUT1_ACTIVE)) NaviData.FCStatusFlags2 &= ~FC_STATUS2_OUT1_ACTIVE;
649
 
650
                                if((!(LastTransmittedFCStatusFlags2 & FC_STATUS2_OUT2_ACTIVE)) && (FC.StatusFlags2 & FC_STATUS2_OUT2_ACTIVE)) NaviData.FCStatusFlags2 |= FC_STATUS2_OUT2_ACTIVE;
489 killagreg 651
                                else
360 holgerb 652
                                if(((LastTransmittedFCStatusFlags2 & FC_STATUS2_OUT2_ACTIVE)) && !(FC.StatusFlags2 & FC_STATUS2_OUT2_ACTIVE)) NaviData.FCStatusFlags2 &= ~FC_STATUS2_OUT2_ACTIVE;
653
 
338 holgerb 654
                                Logging_FCStatusFlags1 |= FC.StatusFlags;
655
                                Logging_FCStatusFlags2 |= FC.StatusFlags2;
41 ingob 656
                                break;
1 ingob 657
 
454 holgerb 658
                        case SPI_FCCMD_BL_ACCU:
223 killagreg 659
                                FC.BAT_Current = FromFlightCtrl.Param.Int[0];
480 holgerb 660
                                DebugOut.Analog[8] = FC.BAT_Current;
206 killagreg 661
                                FC.BAT_UsedCapacity = FromFlightCtrl.Param.Int[1];
471 holgerb 662
                                Parameter.NaviGpsModeControl = FromFlightCtrl.Param.Byte[4];
663
                                FromFC_VarioCharacter = FromFlightCtrl.Param.Byte[5];
664
                                Motor_Version[FromFlightCtrl.Param.Byte[6]] = FromFlightCtrl.Param.Byte[7];
665
                                Motor[FromFlightCtrl.Param.Byte[6]].MaxPWM = FromFlightCtrl.Param.Byte[8];
666
                                Motor[FromFlightCtrl.Param.Byte[6]].State = FromFlightCtrl.Param.Byte[9];
667
                                Motor[FromFlightCtrl.Param.Byte[6]].Temperature = FromFlightCtrl.Param.Byte[10];
668
                                Motor[FromFlightCtrl.Param.Byte[6]].Current = FromFlightCtrl.Param.Byte[11];
298 holgerb 669
                                if(FromFC_VarioCharacter == '+' || FromFC_VarioCharacter == '-') // manual setpoint clears the NC-Parameter command
670
                                 {
671
                                  NCParams_ClearValue(NCPARAMS_ALTITUDE_RATE);
672
                                 }
206 killagreg 673
                                NaviData.UBat = FC.BAT_Voltage;
674
                                NaviData.Current = FC.BAT_Current;
675
                                NaviData.UsedCapacity = FC.BAT_UsedCapacity;
500 holgerb 676
 
206 killagreg 677
                                break;
202 killagreg 678
                        case SPI_FCCMD_PARAMETER1:
454 holgerb 679
                                Parameter.LowVoltageWarning = FromFlightCtrl.Param.Byte[0];
41 ingob 680
                                CHK_POTI_MM(Parameter.NaviGpsGain,FromFlightCtrl.Param.Byte[1],0,255);
681
                                CHK_POTI_MM(Parameter.NaviGpsP,FromFlightCtrl.Param.Byte[2],0,255);
682
                                CHK_POTI_MM(Parameter.NaviGpsI,FromFlightCtrl.Param.Byte[3],0,255);
683
                                CHK_POTI_MM(Parameter.NaviGpsD,FromFlightCtrl.Param.Byte[4],0,255);
684
                                CHK_POTI_MM(Parameter.NaviGpsACC,FromFlightCtrl.Param.Byte[5],0,255);
685
                                Parameter.NaviGpsMinSat = FromFlightCtrl.Param.Byte[6];
686
                                Parameter.NaviStickThreshold = FromFlightCtrl.Param.Byte[7];
103 killagreg 687
                                CHK_POTI_MM(Parameter.NaviOperatingRadius,FromFlightCtrl.Param.Byte[8],0,255);
41 ingob 688
                                CHK_POTI_MM(Parameter.NaviWindCorrection,FromFlightCtrl.Param.Byte[9],0,255);
327 holgerb 689
                                CHK_POTI_MM(Parameter.NaviAccCompensation,FromFlightCtrl.Param.Byte[10],0,255);
41 ingob 690
                                CHK_POTI_MM(Parameter.NaviAngleLimitation,FromFlightCtrl.Param.Byte[11],0,255);
121 killagreg 691
                                break;
419 holgerb 692
                        case SPI_FCCMD_PARAMETER2:
693
                                CHK_POTI_MM(Parameter.NaviOut1Parameter,FromFlightCtrl.Param.Byte[0],0,255);
436 holgerb 694
                                if(FromFlightCtrl.Param.Byte[1]) FC.FromFC_SpeakHoTT = FromFlightCtrl.Param.Byte[1];     // will be cleared in the SD-Logging
454 holgerb 695
                Parameter.FromFC_LandingSpeed = FromFlightCtrl.Param.Byte[2];
489 killagreg 696
                                Parameter.ComingHomeAltitude = FromFlightCtrl.Param.Byte[3];
697
                                Parameter.FromFC_LowVoltageHomeActive = FromFlightCtrl.Param.Byte[4];
500 holgerb 698
                                if(FromFlightCtrl.Param.Byte[5]) FromFC_LoadWP_List = FromFlightCtrl.Param.Byte[5];
509 holgerb 699
                                if(FromFlightCtrl.Param.Byte[6]) FromFC_Load_SingePoint = FromFlightCtrl.Param.Byte[6];
700
                                if(FromFlightCtrl.Param.Byte[7]) FromFC_Store_SingePoint = FromFlightCtrl.Param.Byte[7];
510 holgerb 701
                                CompassSetpoint = FromFlightCtrl.Param.sInt[4] * 10; // 8 & 9
702
                                CompassSetpointCorrected = (3600 + CompassSetpoint + FC.FromFC_CompassOffset + GeoMagDec) % 3600;
703
//FromFlightCtrl.Param.Byte[10]
704
//FromFlightCtrl.Param.Byte[11]
419 holgerb 705
                                break;
202 killagreg 706
                        case SPI_FCCMD_STICK:
41 ingob 707
                                FC.StickGas     = FromFlightCtrl.Param.sByte[0];
708
                                FC.StickYaw     = FromFlightCtrl.Param.sByte[1];
709
                                FC.StickRoll    = FromFlightCtrl.Param.sByte[2];
710
                                FC.StickNick    = FromFlightCtrl.Param.sByte[3];
190 killagreg 711
                                FC.Poti[0]              = FromFlightCtrl.Param.Byte[4];
712
                                FC.Poti[1]              = FromFlightCtrl.Param.Byte[5];
713
                                FC.Poti[2]              = FromFlightCtrl.Param.Byte[6];
714
                                FC.Poti[3]              = FromFlightCtrl.Param.Byte[7];
715
                                FC.Poti[4]              = FromFlightCtrl.Param.Byte[8];
716
                                FC.Poti[5]              = FromFlightCtrl.Param.Byte[9];
717
                                FC.Poti[6]              = FromFlightCtrl.Param.Byte[10];
202 killagreg 718
                                FC.Poti[7]              = FromFlightCtrl.Param.Byte[11];
426 holgerb 719
                            CHK_POTI_MM(WaypointAcceleration,WaypointAccelerationSetting,0,255); // that could be a Poti-Value
41 ingob 720
                                break;
27 holgerb 721
 
202 killagreg 722
                        case SPI_FCCMD_MISC:
41 ingob 723
                                if(CompassCalState != FromFlightCtrl.Param.Byte[0])
724
                                {       // put only new CompassCalState into queue to send via I2C
489 killagreg 725
//                                      if(FromFlightCtrl.Param.Byte[0] == CompassCalState+1 || FromFlightCtrl.Param.Byte[0] == 0)
378 holgerb 726
                                         {
727
                                           CompassCalState = FromFlightCtrl.Param.Byte[0];
728
                                           Compass_SetCalState(CompassCalState);
729
                                         }
392 holgerb 730
//                                       else CompassCalState = 0;
41 ingob 731
                                }
58 killagreg 732
                                Parameter.NaviPH_LoginTime = FromFlightCtrl.Param.Byte[1];
205 killagreg 733
                                NaviData.Variometer = (NaviData.Variometer + 2 * (FromFlightCtrl.Param.sInt[1] - NaviData.Altimeter)) / 2; // provisorisch
287 holgerb 734
                                NaviData.Altimeter = FromFlightCtrl.Param.sInt[1]; // in 5cm
735
                                NaviData.SetpointAltitude = FromFlightCtrl.Param.sInt[2]; // in 5cm
160 holgerb 736
                                CHK_POTI_MM(Parameter.NaviGpsPLimit,FromFlightCtrl.Param.Byte[6],0,255);
737
                                CHK_POTI_MM(Parameter.NaviGpsILimit,FromFlightCtrl.Param.Byte[7],0,255);
738
                                CHK_POTI_MM(Parameter.NaviGpsDLimit,FromFlightCtrl.Param.Byte[8],0,255);
190 killagreg 739
                                FC.RC_Quality   = FromFlightCtrl.Param.Byte[9];
454 holgerb 740
                                NaviData.RC_Quality = FC.RC_Quality;
461 holgerb 741
                                NC_Wait_for_LED = FromFlightCtrl.Param.Byte[10];
454 holgerb 742
//                              FC.RC_RSSI              = FromFlightCtrl.Param.Byte[10];
743
//                              if(!FC.RC_RSSI) NaviData.RC_Quality = FC.RC_Quality; else NaviData.RC_Quality = FC.RC_RSSI;
294 holgerb 744
//                              NaviData.RC_RSSI = FC.RC_RSSI;
206 killagreg 745
                                NaviData.Gas    = (FC.BAT_Voltage * (u32) FromFlightCtrl.Param.Byte[11]) / (u32) Parameter.LowVoltageWarning;
41 ingob 746
                                break;
161 killagreg 747
 
202 killagreg 748
                        case SPI_FCCMD_SERVOS:
121 killagreg 749
                                ServoParams.Refresh             = FromFlightCtrl.Param.Byte[0];
750
                                ServoParams.CompInvert  = FromFlightCtrl.Param.Byte[1];
751
                                ServoParams.NickControl = FromFlightCtrl.Param.Byte[2];
752
                                ServoParams.NickComp    = FromFlightCtrl.Param.Byte[3];
161 killagreg 753
                                ServoParams.NickMin             = FromFlightCtrl.Param.Byte[4];
121 killagreg 754
                                ServoParams.NickMax             = FromFlightCtrl.Param.Byte[5];
755
                                ServoParams.RollControl = FromFlightCtrl.Param.Byte[6];
756
                                ServoParams.RollComp    = FromFlightCtrl.Param.Byte[7];
161 killagreg 757
                                ServoParams.RollMin             = FromFlightCtrl.Param.Byte[8];
758
                                ServoParams.RollMax             = FromFlightCtrl.Param.Byte[9];
338 holgerb 759
                                BL_MinOfMaxPWM = FromFlightCtrl.Param.Byte[10];
419 holgerb 760
                                FC_I2C_ErrorConter = FromFlightCtrl.Param.Byte[11];
119 killagreg 761
                                break;
1 ingob 762
 
202 killagreg 763
                        case SPI_FCCMD_VERSION:
119 killagreg 764
                                FC_Version.Major                = FromFlightCtrl.Param.Byte[0];
765
                                FC_Version.Minor                = FromFlightCtrl.Param.Byte[1];
766
                                FC_Version.Patch                = FromFlightCtrl.Param.Byte[2];
767
                                FC_Version.Compatible   = FromFlightCtrl.Param.Byte[3];
768
                                FC_Version.Hardware             = FromFlightCtrl.Param.Byte[4];
328 holgerb 769
                                FC.Error[0]                     |= FromFlightCtrl.Param.Byte[5];
770
                                FC.Error[1]                     |= FromFlightCtrl.Param.Byte[6];
489 killagreg 771
                                if(FromFlightCtrl.Param.Byte[7] >= 68 && FromFlightCtrl.Param.Byte[7] <= 188)
475 holgerb 772
                                {
489 killagreg 773
                                        FC.FromFC_DisableDeclination = 1;
774
                                        FC.FromFC_CompassOffset = 10 * (s8) (FromFlightCtrl.Param.Byte[7] - 128);
775
                                        GeoMagDec = 0;
776
                                }
777
                                else
475 holgerb 778
                                {
489 killagreg 779
                                        FC.FromFC_DisableDeclination = 0;
780
                                        FC.FromFC_CompassOffset = 10 * FromFlightCtrl.Param.sByte[7];
475 holgerb 781
                                }
358 holgerb 782
                                Parameter.GlobalConfig = FromFlightCtrl.Param.Byte[8];
783
                                Parameter.ExtraConfig = FromFlightCtrl.Param.Byte[9];
320 holgerb 784
                                Parameter.OrientationAngle = FromFlightCtrl.Param.Byte[10];
350 holgerb 785
                                Parameter.GlobalConfig3 = FromFlightCtrl.Param.Byte[11];
338 holgerb 786
                                DebugOut.StatusGreen |= AMPEL_FC; // status of FC Present
787
                                DebugOut.StatusGreen |= AMPEL_BL; // status of BL Present
455 holgerb 788
                                if(FC.Error[0] || FC.Error[1] /* || FC.Error[2] || FC.Error[3] || FC.Error[4]*/) DebugOut.StatusRed |= AMPEL_FC;
338 holgerb 789
                                else DebugOut.StatusRed &= ~AMPEL_FC;
41 ingob 790
                                break;
791
                        default:
204 killagreg 792
                                break;
41 ingob 793
                }
378 holgerb 794
                DebugOut.Analog[0] = FromFlightCtrl.AngleNick;
795
                DebugOut.Analog[1] = FromFlightCtrl.AngleRoll;
796
                DebugOut.Analog[2] = FromFlightCtrl.AccNick;
797
                DebugOut.Analog[3] = FromFlightCtrl.AccRoll;
798
                DebugOut.Analog[11] = FromFlightCtrl.GyroHeading/10;// in deg
799
                Data3D.AngleNick = FromFlightCtrl.AngleNick;            // in 0.1 deg
800
                Data3D.AngleRoll = FromFlightCtrl.AngleRoll;            // in 0.1 deg
801
                Data3D.Heading   = FromFlightCtrl.GyroHeading;          // in 0.1 deg
41 ingob 802
                // every time we got new data from the FC via SPI call the navigation routine
215 killagreg 803
                // and update GPSStick that are returned to FC
378 holgerb 804
                SPI_RxBuffer_Request = 0;
215 killagreg 805
                GPS_Navigation(&GPSData, &(ToFlightCtrl.GPSStick));
255 killagreg 806
                ClearFCStatusFlags = 1;
180 killagreg 807
                if(counter)
808
                {
809
                        counter--;                                       // count down to enable servo
202 killagreg 810
                        if(!counter) TIMER2_Init();  // enable Servo Output
180 killagreg 811
                }
812
                timeout = SetDelay(80); // 80 ms, new data are send every 20 ms
1 ingob 813
 
79 killagreg 814
        }       // EOF if(SPI_RxBuffer_Request)
180 killagreg 815
        else // no new SPI data
202 killagreg 816
        {
180 killagreg 817
                if(CheckDelay(timeout) && (counter == 0))
818
                {
819
                        TIMER2_Deinit();  // disable Servo Output
820
                        counter = 50;     // reset counter for enabling Servo Output
821
                }
822
        }
1 ingob 823
}
824
 
41 ingob 825
//------------------------------------------------------
826
void SPI0_GetFlightCtrlVersion(void)
827
{
154 killagreg 828
        u32 timeout;
829
        u8 repeat;
78 holgerb 830
        u8 msg[64];
41 ingob 831
 
297 ingob 832
        UART1_PutString("\r\n Looking for FlightControl");
41 ingob 833
        FC_Version.Major = 0xFF;
834
        FC_Version.Minor = 0xFF;
835
        FC_Version.Patch = 0xFF;
836
        FC_Version.Compatible = 0xFF;
837
 
165 killagreg 838
        // polling FC version info
154 killagreg 839
        repeat = 0;
41 ingob 840
        do
841
        {
154 killagreg 842
                timeout = SetDelay(250);
843
                do
844
                {
845
                        SPI0_UpdateBuffer();
846
                        if (FC_Version.Major != 0xFF)  break;
847
                }while (!CheckDelay(timeout));
848
                UART1_PutString(".");
849
                repeat++;
489 killagreg 850
                FCCalibActive = 1;
180 killagreg 851
        }while((FC_Version.Major == 0xFF) && (repeat < 40)); // 40*250ms = 10s
41 ingob 852
        // if we got it
853
        if (FC_Version.Major != 0xFF)
854
        {
489 killagreg 855
                sprintf(msg, " FC V%d.%d%c HW:%d.%02d", FC_Version.Major, FC_Version.Minor, 'a'+FC_Version.Patch, FC_Version.Hardware/10,FC_Version.Hardware%10);
110 killagreg 856
                UART1_PutString(msg);
41 ingob 857
        }
242 killagreg 858
        else UART1_PutString("\n\r not found!");
41 ingob 859
}
860
 
489 killagreg 861
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
862
// + extended Current measurement -> 200 = 20A    201 = 21A    255 = 75A (20+55)
863
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
864
u16 BL3_Current(u8 who) // in 0,1A
865
{
866
        if(Motor[who].Current <= 200) return((u16) Motor[who].Current);
867
        else
868
        {
869
                if(Motor_Version[who] & MOTOR_STATE_BL30) return(200 + 10 * (u16) (Motor[who].Current - 200));
870
                else return((u16) Motor[who].Current);
871
        }
872
}
41 ingob 873