Subversion Repositories NaviCtrl

Rev

Rev 244 | Rev 255 | Go to most recent revision | 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
// + Copyright (c) 2008 Ingo Busker, Holger Buss
171 ingob 6
// + Nur für den privaten Gebrauch / NON-COMMERCIAL USE ONLY
1 ingob 7
// + FOR NON COMMERCIAL USE ONLY
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 10
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
11
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
12
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
13
// + bzgl. der Nutzungsbedingungen aufzunehmen.
1 ingob 14
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
15
// + Verkauf von Luftbildaufnahmen, usw.
16
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
1 ingob 18
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
21
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
22
// + eindeutig als Ursprung verlinkt werden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
25
// + Benutzung auf eigene Gefahr
26
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
27
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
171 ingob 28
// + Die Portierung oder Nutzung der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
1 ingob 29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
1 ingob 34
// + this list of conditions and the following disclaimer.
35
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
36
// +     from this software without specific prior written permission.
41 ingob 37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permitted
1 ingob 38
// +     for non-commercial use (directly or indirectly)
41 ingob 39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
1 ingob 40
// +     with our written permission
41 ingob 41
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
42
// +     clearly linked as origin
171 ingob 43
// +   * porting the sources to other systems or using the software on other systems (except hardware from www.mikrokopter.de) is not allowed
1 ingob 44
//
45
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
46
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
49
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 ingob 55
// +  POSSIBILITY OF SUCH DAMAGE.
1 ingob 56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
41 ingob 57
 
58
#include <string.h>
59
#include "91x_lib.h"
60
#include "led.h"
215 killagreg 61
#include "gps.h"
41 ingob 62
#include "uart1.h"
63
#include "spi_slave.h"
242 killagreg 64
#include "compass.h"
119 killagreg 65
#include "timer1.h"
66
#include "timer2.h"
136 killagreg 67
#include "config.h"
1 ingob 68
#include "main.h"
242 killagreg 69
#include "compass.h" 
1 ingob 70
 
71
 
41 ingob 72
#define SPI_RXSYNCBYTE1 0xAA
73
#define SPI_RXSYNCBYTE2 0x83
74
#define SPI_TXSYNCBYTE1 0x81
75
#define SPI_TXSYNCBYTE2 0x55
1 ingob 76
 
41 ingob 77
//communication packets
215 killagreg 78
FromFlightCtrl_t   FromFlightCtrl;
79
ToFlightCtrl_t     ToFlightCtrl;
183 killagreg 80
#define SPI0_TIMEOUT 500 // 500ms
146 killagreg 81
volatile u32 SPI0_Timeout = 0;
1 ingob 82
 
41 ingob 83
// tx packet buffer
84
#define SPI_TXBUFFER_LEN (2 + sizeof(ToFlightCtrl)) // 2 bytes at start are for synchronization
85
volatile u8 SPI_TxBuffer[SPI_TXBUFFER_LEN];
86
volatile u8 SPI_TxBufferIndex = 0;
87
u8 *Ptr_TxChksum = NULL ;  // pointer to checksum in TxBuffer
1 ingob 88
 
41 ingob 89
// rx packet buffer
90
#define SPI_RXBUFFER_LEN sizeof(FromFlightCtrl)
91
volatile u8 SPI_RxBuffer[SPI_RXBUFFER_LEN];
92
volatile u8 SPI_RxBufferIndex = 0;
93
volatile u8 SPI_RxBuffer_Request = 0;
1 ingob 94
#define SPI_COMMAND_INDEX 0
231 holgerb 95
volatile u8 FC_ErrorCode[5] = {0,0,0,0,0};
1 ingob 96
 
149 killagreg 97
s32 Kalman_K = 32;
41 ingob 98
s32 Kalman_MaxDrift = 5 * 16;
99
s32 Kalman_MaxFusion = 64;
148 holgerb 100
s32 ToFcGpsZ = 0;
1 ingob 101
 
204 killagreg 102
u8 SPI_CommandSequence[] = { SPI_NCCMD_VERSION, SPI_NCCMD_KALMAN, SPI_NCCMD_GPSINFO ,SPI_NCCMD_KALMAN, SPI_NCCMD_KALMAN};
41 ingob 103
u8 SPI_CommandCounter = 0;
222 holgerb 104
s32 ToFC_Rotate_C = 64, ToFC_Rotate_S = 0;
105
s32 HeadFreeStartAngle = 0;
58 killagreg 106
 
41 ingob 107
SPI_Version_t FC_Version;
1 ingob 108
 
109
 
110
 
41 ingob 111
//--------------------------------------------------------------
112
void SSP0_IRQHandler(void)
113
{
114
        static u8 rxchksum = 0;
115
        u8 rxdata;
1 ingob 116
 
189 killagreg 117
        #define SPI_SYNC1       0
118
        #define SPI_SYNC2       1
119
        #define SPI_DATA        2
120
        static u8 SPI_State = SPI_SYNC1;
121
 
195 killagreg 122
        IENABLE;
123
 
161 killagreg 124
        // clear pending bits
41 ingob 125
        SSP_ClearITPendingBit(SSP0, SSP_IT_RxTimeOut);
144 killagreg 126
        SSP_ClearITPendingBit(SSP0, SSP_IT_RxFifo);
189 killagreg 127
 
79 killagreg 128
        // while RxFIFO not empty
129
        while (SSP_GetFlagStatus(SSP0, SSP_FLAG_RxFifoNotEmpty) == SET)
130
        {
41 ingob 131
                rxdata =  SSP0->DR; // catch the received byte
132
                // Fill TxFIFO while its not full or end of packet is reached
79 killagreg 133
                while (SSP_GetFlagStatus(SSP0, SSP_FLAG_TxFifoNotFull) == SET)
161 killagreg 134
                {
79 killagreg 135
                        if (SPI_TxBufferIndex  < SPI_TXBUFFER_LEN)   // still data to send ?
136
                        {
41 ingob 137
                                SSP0->DR = SPI_TxBuffer[SPI_TxBufferIndex];       // send a byte
79 killagreg 138
                                *Ptr_TxChksum += SPI_TxBuffer[SPI_TxBufferIndex]; // update checksum
139
                                SPI_TxBufferIndex++; // pointer to next byte
140
                        }
141
                        else // end of packet is reached reset and copy data to tx buffer
142
                        {
143
                                SPI_TxBufferIndex = 0;  // reset buffer index
144
                                ToFlightCtrl.Chksum = 0;  // initialize checksum
145
                                ToFlightCtrl.BeepTime = BeepTime;  // set beeptime
146
                                BeepTime = 0; // reset local beeptime
41 ingob 147
                                // copy contents of ToFlightCtrl->SPI_TxBuffer
79 killagreg 148
                                memcpy((u8 *) &(SPI_TxBuffer[2]), (u8 *) &ToFlightCtrl, sizeof(ToFlightCtrl));
149
                        }
41 ingob 150
                }
151
                switch (SPI_State)
152
                {
153
                        case SPI_SYNC1:
154
                                SPI_RxBufferIndex = 0; // reset buffer index
155
                                rxchksum = rxdata;     // init checksum
156
                                if (rxdata == SPI_RXSYNCBYTE1)
157
                                {   // 1st syncbyte ok
158
                                        SPI_State = SPI_SYNC2;  // step to sync2
159
                                }
160
                                break;
79 killagreg 161
                        case SPI_SYNC2:
41 ingob 162
                                if (rxdata == SPI_RXSYNCBYTE2)
163
                                {  // 2nd Syncbyte ok
164
                                        rxchksum += rxdata;
165
                                        SPI_State = SPI_DATA;
166
                                }  // 2nd Syncbyte does not match
167
                                else
168
                                {
169
                                        SPI_State  = SPI_SYNC1; //jump back to sync1
170
                                }
171
                                break;
172
                        case SPI_DATA:
173
                                SPI_RxBuffer[SPI_RxBufferIndex++]= rxdata; // copy databyte to rx buffer
174
                                if (SPI_RxBufferIndex >= SPI_RXBUFFER_LEN) // end of packet is reached
175
                                {
176
                                        if (rxdata == rxchksum) // verify checksum byte
177
                                        {
178
                                                // copy SPI_RxBuffer -> FromFlightCtrl
179
                                                if(!SPI_RxBuffer_Request) // block writing to FromFlightCtrl on reading access
180
                                                {
181
                                                        memcpy((u8 *) &FromFlightCtrl, (u8 *) SPI_RxBuffer, sizeof(FromFlightCtrl));
182
                                                        SPI_RxBuffer_Request = 1;
183
                                                }
146 killagreg 184
                                                // reset timeout counter on good packet
185
                                                SPI0_Timeout = SetDelay(SPI0_TIMEOUT);
41 ingob 186
                                                DebugOut.Analog[13]++;
187
                                        }
188
                                        else // bad checksum byte
189
                                        {
190
                                                DebugOut.Analog[12]++; // increase SPI chksum error counter
191
                                        }
192
                                        SPI_State  = SPI_SYNC1; // reset state
193
                                }
194
                                else // end of packet not reached
195
                                {
196
                                        rxchksum += rxdata;      // update checksum
197
                                }
198
                                break;
199
                        default:
200
                                SPI_State  = SPI_SYNC1;
201
                                break;
202
                }
203
        }
195 killagreg 204
 
205
        IDISABLE;
1 ingob 206
}
207
 
208
//--------------------------------------------------------------
209
void SPI0_Init(void)
210
{
41 ingob 211
        GPIO_InitTypeDef GPIO_InitStructure;
212
        SSP_InitTypeDef   SSP_InitStructure;
1 ingob 213
 
110 killagreg 214
        UART1_PutString("\r\n SPI init...");
1 ingob 215
 
41 ingob 216
        SCU_APBPeriphClockConfig(__GPIO2 ,ENABLE);
217
        SCU_APBPeriphClockConfig(__SSP0 ,ENABLE);
1 ingob 218
 
41 ingob 219
        GPIO_DeInit(GPIO2);
220
        //SSP0_CLK, SSP0_MOSI, SSP0_NSS pins
221
        GPIO_StructInit(&GPIO_InitStructure);
222
        GPIO_InitStructure.GPIO_Direction = GPIO_PinInput;
223
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_4 | GPIO_Pin_5 | GPIO_Pin_7;
224
        GPIO_InitStructure.GPIO_Type = GPIO_Type_PushPull ;
196 killagreg 225
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Enable;
41 ingob 226
        GPIO_InitStructure.GPIO_Alternate = GPIO_InputAlt1; //SSP0_SCLK, SSP0_MOSI, SSP0_NSS
227
        GPIO_Init (GPIO2, &GPIO_InitStructure);
1 ingob 228
 
41 ingob 229
        // SSP0_MISO pin GPIO2.6
230
        GPIO_StructInit(&GPIO_InitStructure);
231
        GPIO_InitStructure.GPIO_Direction = GPIO_PinOutput;
232
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6;
233
        GPIO_InitStructure.GPIO_Type = GPIO_Type_PushPull ;
196 killagreg 234
        GPIO_InitStructure.GPIO_IPInputConnected = GPIO_IPInputConnected_Enable;
41 ingob 235
        GPIO_InitStructure.GPIO_Alternate = GPIO_OutputAlt2; //SSP0_MISO
236
        GPIO_Init (GPIO2, &GPIO_InitStructure);
1 ingob 237
 
41 ingob 238
        SSP_DeInit(SSP0);
239
        SSP_StructInit(&SSP_InitStructure);
240
        SSP_InitStructure.SSP_FrameFormat = SSP_FrameFormat_Motorola;
241
        SSP_InitStructure.SSP_Mode = SSP_Mode_Slave;
242
        SSP_InitStructure.SSP_SlaveOutput = SSP_SlaveOutput_Enable;
243
        SSP_InitStructure.SSP_CPHA = SSP_CPHA_1Edge;
244
        SSP_InitStructure.SSP_CPOL = SSP_CPOL_Low;
245
        SSP_InitStructure.SSP_ClockRate = 0;
1 ingob 246
 
41 ingob 247
        SSP_Init(SSP0, &SSP_InitStructure);
144 killagreg 248
        SSP_ITConfig(SSP0, SSP_IT_RxFifo | SSP_IT_RxTimeOut, ENABLE);
202 killagreg 249
 
41 ingob 250
        SSP_Cmd(SSP0, ENABLE);
251
        // initialize the syncbytes in the tx buffer
252
        SPI_TxBuffer[0] = SPI_TXSYNCBYTE1;
253
        SPI_TxBuffer[1] = SPI_TXSYNCBYTE2;
254
        // set the pointer to the checksum byte in the tx buffer
255
        Ptr_TxChksum = (u8 *) &(((ToFlightCtrl_t *) &(SPI_TxBuffer[2]))->Chksum);
256
 
215 killagreg 257
        ToFlightCtrl.GPSStick.Nick = 0;
258
        ToFlightCtrl.GPSStick.Roll = 0;
259
        ToFlightCtrl.GPSStick.Yaw = 0;
260
 
136 killagreg 261
        VIC_Config(SSP0_ITLine, VIC_IRQ, PRIORITY_SPI0);
41 ingob 262
        VIC_ITCmd(SSP0_ITLine, ENABLE);
263
 
146 killagreg 264
        SPI0_Timeout = SetDelay(4*SPI0_TIMEOUT);
265
 
110 killagreg 266
        UART1_PutString("ok");
1 ingob 267
}
41 ingob 268
 
222 holgerb 269
 
1 ingob 270
//------------------------------------------------------
41 ingob 271
void SPI0_UpdateBuffer(void)
1 ingob 272
{
180 killagreg 273
        static u32 timeout = 0;
274
        static u8 counter = 50;
254 killagreg 275
        static u8 CompassCalState = 0;
202 killagreg 276
 
41 ingob 277
        if (SPI_RxBuffer_Request)
278
        {
279
                // avoid sending data via SPI during the update of the  ToFlightCtrl structure
280
                VIC_ITCmd(SSP0_ITLine, DISABLE); // disable SPI interrupt
254 killagreg 281
                ToFlightCtrl.CompassHeading = Compass_Heading;
189 killagreg 282
                DebugOut.Analog[10] = ToFlightCtrl.CompassHeading;
228 holgerb 283
                if(ToFlightCtrl.CompassHeading >= 0) ToFlightCtrl.CompassHeading = (360 + ToFlightCtrl.CompassHeading + FromFlightCtrl.GyroYaw / 12) % 360;
41 ingob 284
                // cycle spi commands
285
                ToFlightCtrl.Command = SPI_CommandSequence[SPI_CommandCounter++];
118 killagreg 286
                // restart command cycle at the end
41 ingob 287
                if (SPI_CommandCounter >= sizeof(SPI_CommandSequence)) SPI_CommandCounter = 0;
1 ingob 288
 
41 ingob 289
                switch (ToFlightCtrl.Command)
290
                {
202 killagreg 291
                        case  SPI_NCCMD_KALMAN:
223 killagreg 292
                                CalcHeadFree();
149 killagreg 293
                                ToFlightCtrl.Param.sByte[0] = (s8) Kalman_K;
92 killagreg 294
                                ToFlightCtrl.Param.sByte[1] = (s8) Kalman_MaxFusion;
295
                                ToFlightCtrl.Param.sByte[2] = (s8) Kalman_MaxDrift;
118 killagreg 296
                                ToFlightCtrl.Param.Byte[3]      = (u8) SerialLinkOkay;
149 killagreg 297
                                ToFlightCtrl.Param.sByte[4] = (s8) ToFcGpsZ;
222 holgerb 298
                                ToFlightCtrl.Param.Byte[5] = (s8) ToFC_Rotate_C;
223 killagreg 299
                                ToFlightCtrl.Param.Byte[6] = (s8) ToFC_Rotate_S;
161 killagreg 300
                                break;
58 killagreg 301
 
202 killagreg 302
                        case SPI_NCCMD_VERSION:
303
                                ToFlightCtrl.Param.Byte[0] = VERSION_MAJOR;
304
                                ToFlightCtrl.Param.Byte[1] = VERSION_MINOR;
204 killagreg 305
                                ToFlightCtrl.Param.Byte[2] = VERSION_PATCH;
202 killagreg 306
                                ToFlightCtrl.Param.Byte[3] = FC_SPI_COMPATIBLE;
218 killagreg 307
                                ToFlightCtrl.Param.Byte[4] = BoardRelease;
231 holgerb 308
                                ToFlightCtrl.Param.Byte[5] = DebugOut.Status[0];
309
                                ToFlightCtrl.Param.Byte[6] = DebugOut.Status[1];
233 holgerb 310
                                ToFlightCtrl.Param.Byte[7] = ErrorCode;
202 killagreg 311
                                break;
223 killagreg 312
 
204 killagreg 313
                        case SPI_NCCMD_GPSINFO:
314
                                ToFlightCtrl.Param.Byte[0] = GPSData.Flags;
315
                                ToFlightCtrl.Param.Byte[1] = GPSData.NumOfSats;
316
                                ToFlightCtrl.Param.Byte[2] = GPSData.SatFix;
232 killagreg 317
                                ToFlightCtrl.Param.Byte[3] = GPSData.Speed_Ground / 100; // m/s
205 killagreg 318
                                ToFlightCtrl.Param.Int[2]  = NaviData.HomePositionDeviation.Distance; // dm
228 holgerb 319
                                ToFlightCtrl.Param.sInt[3] = NaviData.HomePositionDeviation.Bearing;  // deg
204 killagreg 320
                                break;
41 ingob 321
                        default:
322
                                break;
323
                }
324
                VIC_ITCmd(SSP0_ITLine, ENABLE);         // enable SPI interrupt
1 ingob 325
 
326
 
41 ingob 327
                switch(FromFlightCtrl.Command)
328
                {
202 killagreg 329
                        case SPI_FCCMD_USER:
41 ingob 330
                                Parameter.User1 = FromFlightCtrl.Param.Byte[0];
331
                                Parameter.User2 = FromFlightCtrl.Param.Byte[1];
332
                                Parameter.User3 = FromFlightCtrl.Param.Byte[2];
333
                                Parameter.User4 = FromFlightCtrl.Param.Byte[3];
334
                                Parameter.User5 = FromFlightCtrl.Param.Byte[4];
335
                                Parameter.User6 = FromFlightCtrl.Param.Byte[5];
336
                                Parameter.User7 = FromFlightCtrl.Param.Byte[6];
337
                                Parameter.User8 = FromFlightCtrl.Param.Byte[7];
199 killagreg 338
                                if(ClearFCFlags)
41 ingob 339
                                {
199 killagreg 340
                                        FC.Flags = 0;
341
                                        ClearFCFlags = 0;
41 ingob 342
                                }
223 killagreg 343
                                FC.Flags |= FromFlightCtrl.Param.Byte[8];
344
                                Parameter.ActiveSetting = FromFlightCtrl.Param.Byte[9];
199 killagreg 345
                                DebugOut.Analog[5] = FC.Flags;
206 killagreg 346
                                NaviData.FCFlags = FC.Flags;
223 killagreg 347
                                HeadFreeStartAngle = (s32) FromFlightCtrl.Param.Byte[10] * 20; // convert to 0.1°
41 ingob 348
                                break;
1 ingob 349
 
206 killagreg 350
                        case SPI_FCCMD_ACCU:
223 killagreg 351
                                FC.BAT_Current = FromFlightCtrl.Param.Int[0];
206 killagreg 352
                                FC.BAT_UsedCapacity = FromFlightCtrl.Param.Int[1];
353
                                FC.BAT_Voltage = FromFlightCtrl.Param.Byte[4];
354
                                Parameter.LowVoltageWarning = FromFlightCtrl.Param.Byte[5];
355
                                NaviData.UBat = FC.BAT_Voltage;
356
                                NaviData.Current = FC.BAT_Current;
357
                                NaviData.UsedCapacity = FC.BAT_UsedCapacity;
358
                                break;
359
 
193 killagreg 360
#define CHK_POTI(b,a) { if(a < 248) b = a; else b = FC.Poti[255 - a]; }
190 killagreg 361
#define CHK_POTI_MM(b,a,min,max) {CHK_POTI(b,a); LIMIT_MIN_MAX(b, min, max); }
362
 
202 killagreg 363
                        case SPI_FCCMD_PARAMETER1:
41 ingob 364
                                CHK_POTI_MM(Parameter.NaviGpsModeControl,FromFlightCtrl.Param.Byte[0],0,255);
365
                                CHK_POTI_MM(Parameter.NaviGpsGain,FromFlightCtrl.Param.Byte[1],0,255);
366
                                CHK_POTI_MM(Parameter.NaviGpsP,FromFlightCtrl.Param.Byte[2],0,255);
367
                                CHK_POTI_MM(Parameter.NaviGpsI,FromFlightCtrl.Param.Byte[3],0,255);
368
                                CHK_POTI_MM(Parameter.NaviGpsD,FromFlightCtrl.Param.Byte[4],0,255);
369
                                CHK_POTI_MM(Parameter.NaviGpsACC,FromFlightCtrl.Param.Byte[5],0,255);
370
                                Parameter.NaviGpsMinSat = FromFlightCtrl.Param.Byte[6];
371
                                Parameter.NaviStickThreshold = FromFlightCtrl.Param.Byte[7];
103 killagreg 372
                                CHK_POTI_MM(Parameter.NaviOperatingRadius,FromFlightCtrl.Param.Byte[8],0,255);
41 ingob 373
                                CHK_POTI_MM(Parameter.NaviWindCorrection,FromFlightCtrl.Param.Byte[9],0,255);
374
                                CHK_POTI_MM(Parameter.NaviSpeedCompensation,FromFlightCtrl.Param.Byte[10],0,255);
375
                                CHK_POTI_MM(Parameter.NaviAngleLimitation,FromFlightCtrl.Param.Byte[11],0,255);
121 killagreg 376
                                break;
1 ingob 377
 
202 killagreg 378
                        case SPI_FCCMD_STICK:
41 ingob 379
                                FC.StickGas     = FromFlightCtrl.Param.sByte[0];
380
                                FC.StickYaw     = FromFlightCtrl.Param.sByte[1];
381
                                FC.StickRoll    = FromFlightCtrl.Param.sByte[2];
382
                                FC.StickNick    = FromFlightCtrl.Param.sByte[3];
190 killagreg 383
                                FC.Poti[0]              = FromFlightCtrl.Param.Byte[4];
384
                                FC.Poti[1]              = FromFlightCtrl.Param.Byte[5];
385
                                FC.Poti[2]              = FromFlightCtrl.Param.Byte[6];
386
                                FC.Poti[3]              = FromFlightCtrl.Param.Byte[7];
387
                                FC.Poti[4]              = FromFlightCtrl.Param.Byte[8];
388
                                FC.Poti[5]              = FromFlightCtrl.Param.Byte[9];
389
                                FC.Poti[6]              = FromFlightCtrl.Param.Byte[10];
202 killagreg 390
                                FC.Poti[7]              = FromFlightCtrl.Param.Byte[11];
41 ingob 391
                                break;
27 holgerb 392
 
202 killagreg 393
                        case SPI_FCCMD_MISC:
41 ingob 394
                                if(CompassCalState != FromFlightCtrl.Param.Byte[0])
395
                                {       // put only new CompassCalState into queue to send via I2C
396
                                        CompassCalState = FromFlightCtrl.Param.Byte[0];
254 killagreg 397
                                        Compass_SetCalState(CompassCalState);
41 ingob 398
                                }
58 killagreg 399
                                Parameter.NaviPH_LoginTime = FromFlightCtrl.Param.Byte[1];
205 killagreg 400
                                NaviData.Variometer = (NaviData.Variometer + 2 * (FromFlightCtrl.Param.sInt[1] - NaviData.Altimeter)) / 2; // provisorisch
401
                                NaviData.Altimeter = FromFlightCtrl.Param.sInt[1]; // is located at byte 2 and 3
402
                                NaviData.SetpointAltitude = FromFlightCtrl.Param.sInt[2]; // is located at byte 4 and 5
160 holgerb 403
                                CHK_POTI_MM(Parameter.NaviGpsPLimit,FromFlightCtrl.Param.Byte[6],0,255);
404
                                CHK_POTI_MM(Parameter.NaviGpsILimit,FromFlightCtrl.Param.Byte[7],0,255);
405
                                CHK_POTI_MM(Parameter.NaviGpsDLimit,FromFlightCtrl.Param.Byte[8],0,255);
190 killagreg 406
                                FC.RC_Quality   = FromFlightCtrl.Param.Byte[9];
407
                                FC.RC_RSSI              = FromFlightCtrl.Param.Byte[10];
206 killagreg 408
                                NaviData.RC_Quality = FC.RC_Quality;
409
                                NaviData.RC_RSSI = FC.RC_RSSI;
410
                                NaviData.Gas    = (FC.BAT_Voltage * (u32) FromFlightCtrl.Param.Byte[11]) / (u32) Parameter.LowVoltageWarning;
41 ingob 411
                                break;
161 killagreg 412
 
202 killagreg 413
                        case SPI_FCCMD_SERVOS:
121 killagreg 414
                                ServoParams.Refresh             = FromFlightCtrl.Param.Byte[0];
415
                                ServoParams.CompInvert  = FromFlightCtrl.Param.Byte[1];
416
                                ServoParams.NickControl = FromFlightCtrl.Param.Byte[2];
417
                                ServoParams.NickComp    = FromFlightCtrl.Param.Byte[3];
161 killagreg 418
                                ServoParams.NickMin             = FromFlightCtrl.Param.Byte[4];
121 killagreg 419
                                ServoParams.NickMax             = FromFlightCtrl.Param.Byte[5];
420
                                ServoParams.RollControl = FromFlightCtrl.Param.Byte[6];
421
                                ServoParams.RollComp    = FromFlightCtrl.Param.Byte[7];
161 killagreg 422
                                ServoParams.RollMin             = FromFlightCtrl.Param.Byte[8];
423
                                ServoParams.RollMax             = FromFlightCtrl.Param.Byte[9];
119 killagreg 424
                                break;
1 ingob 425
 
202 killagreg 426
                        case SPI_FCCMD_VERSION:
119 killagreg 427
                                FC_Version.Major                = FromFlightCtrl.Param.Byte[0];
428
                                FC_Version.Minor                = FromFlightCtrl.Param.Byte[1];
429
                                FC_Version.Patch                = FromFlightCtrl.Param.Byte[2];
430
                                FC_Version.Compatible   = FromFlightCtrl.Param.Byte[3];
431
                                FC_Version.Hardware             = FromFlightCtrl.Param.Byte[4];
231 holgerb 432
                                FC_ErrorCode[0]                 = FromFlightCtrl.Param.Byte[5];
433
                                FC_ErrorCode[1]                 = FromFlightCtrl.Param.Byte[6];
434
                                FC_ErrorCode[2]                 = FromFlightCtrl.Param.Byte[7];
435
                                DebugOut.Status[0] |= 0x01; // status of FC Present
232 killagreg 436
                                DebugOut.Status[0] |= 0x02; // status of BL Present
437
                                if(FC_ErrorCode[0] || FC_ErrorCode[1] || FC_ErrorCode[2]) DebugOut.Status[1] |= 0x01;
438
                                else DebugOut.Status[1] &= ~0x01;
41 ingob 439
                                break;
440
                        default:
204 killagreg 441
                                break;
41 ingob 442
                }
1 ingob 443
 
41 ingob 444
                // every time we got new data from the FC via SPI call the navigation routine
215 killagreg 445
                // and update GPSStick that are returned to FC
446
                GPS_Navigation(&GPSData, &(ToFlightCtrl.GPSStick));
199 killagreg 447
                ClearFCFlags = 1;
202 killagreg 448
 
180 killagreg 449
                if(counter)
450
                {
451
                        counter--;                                       // count down to enable servo
202 killagreg 452
                        if(!counter) TIMER2_Init();  // enable Servo Output
180 killagreg 453
                }
1 ingob 454
 
41 ingob 455
                SPI_RxBuffer_Request = 0;
180 killagreg 456
                timeout = SetDelay(80); // 80 ms, new data are send every 20 ms
1 ingob 457
 
62 killagreg 458
                DebugOut.Analog[0] = FromFlightCtrl.AngleNick;
459
                DebugOut.Analog[1] = FromFlightCtrl.AngleRoll;
61 holgerb 460
                DebugOut.Analog[2] = FromFlightCtrl.AccNick;
461
                DebugOut.Analog[3] = FromFlightCtrl.AccRoll;
62 killagreg 462
                DebugOut.Analog[11] = FromFlightCtrl.GyroHeading/10;// in deg
79 killagreg 463
                Data3D.AngleNick = FromFlightCtrl.AngleNick;            // in 0.1 deg
464
                Data3D.AngleRoll = FromFlightCtrl.AngleRoll;            // in 0.1 deg
465
                Data3D.Heading   = FromFlightCtrl.GyroHeading;          // in 0.1 deg
466
        }       // EOF if(SPI_RxBuffer_Request)
180 killagreg 467
        else // no new SPI data
202 killagreg 468
        {
180 killagreg 469
                if(CheckDelay(timeout) && (counter == 0))
470
                {
471
                        TIMER2_Deinit();  // disable Servo Output
472
                        counter = 50;     // reset counter for enabling Servo Output
473
                }
474
        }
1 ingob 475
}
476
 
41 ingob 477
//------------------------------------------------------
478
void SPI0_GetFlightCtrlVersion(void)
479
{
154 killagreg 480
        u32 timeout;
481
        u8 repeat;
78 holgerb 482
        u8 msg[64];
41 ingob 483
 
242 killagreg 484
        UART1_PutString("\r\n Looking for FlightContol");
41 ingob 485
        FC_Version.Major = 0xFF;
486
        FC_Version.Minor = 0xFF;
487
        FC_Version.Patch = 0xFF;
488
        FC_Version.Compatible = 0xFF;
489
 
165 killagreg 490
        // polling FC version info
154 killagreg 491
        repeat = 0;
41 ingob 492
        do
493
        {
154 killagreg 494
                timeout = SetDelay(250);
495
                do
496
                {
497
                        SPI0_UpdateBuffer();
498
                        if (FC_Version.Major != 0xFF)  break;
499
                }while (!CheckDelay(timeout));
500
                UART1_PutString(".");
501
                repeat++;
180 killagreg 502
        }while((FC_Version.Major == 0xFF) && (repeat < 40)); // 40*250ms = 10s
41 ingob 503
        // if we got it
504
        if (FC_Version.Major != 0xFF)
505
        {
242 killagreg 506
                sprintf(msg, " FC V%d.%d%c HW:%d.%d", FC_Version.Major, FC_Version.Minor, 'a'+FC_Version.Patch, FC_Version.Hardware/10,FC_Version.Hardware%10);
110 killagreg 507
                UART1_PutString(msg);
41 ingob 508
        }
242 killagreg 509
        else UART1_PutString("\n\r not found!");
41 ingob 510
}
511
 
512