Subversion Repositories NaviCtrl

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
41 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
41 ingob 7
// + FOR NON COMMERCIAL USE ONLY
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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.
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
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
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
41 ingob 29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
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.
37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permitted
38
// +     for non-commercial use (directly or indirectly)
39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
40
// +     with our written permission
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
41 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
55
// +  POSSIBILITY OF SUCH DAMAGE.
56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
#include "91x_lib.h"
58
#include "uart1.h"
59
#include "ubx.h"
60
#include "led.h"
119 killagreg 61
#include "timer1.h"
41 ingob 62
 
63
// ------------------------------------------------------------------------------------------------
64
// defines
65
 
66
#define DAYS_FROM_JAN01YEAR0001_TO_JAN6_1980 722819 // the year 0 does not exist!
67
#define DAYS_PER_YEAR           365
68
#define DAYS_PER_LEAPYEAR       366
69
#define DAYS_PER_4YEARS         1461    //((3 * DAYS_PER_YEAR) + DAYS_PER_LEAPYEAR) // years dividable by 4 are leap years
70
#define DAYS_PER_100YEARS       36524   //((25 * DAYS_PER_4YEARS) - 1) // years dividable by 100 are no leap years
71
#define DAYS_PER_400YEARS       146097  //((4 * DAYS_PER_100YEARS) + 1L) // but years dividable by 400 are leap years
72
#define SECONDS_PER_MINUTE      60
73
#define MINUTES_PER_HOUR        60
74
#define HOURS_PER_DAY           24
75
#define DAYS_PER_WEEK           7
76
#define SECONDS_PER_HOUR        3600    //(SECONDS_PER_MINUTE * MINUTES_PER_HOUR)
77
#define SECONDS_PER_DAY         86400   //(SECONDS_PER_HOUR * HOURS_PER_DAY)
78
#define SECONDS_PER_WEEK        604800  //(SECONDS_PER_DAY * DAYS_PER_WEEK)
79
 
80
// days per month in normal and leap years
81
const u32       Leap[ 13 ]      = { 0,  31,  60,  91, 121, 152, 182, 213, 244, 274, 305, 335, 366 };
82
const u32 Normal[ 13 ]  = { 0,  31,  59,  90, 120, 151, 181, 212, 243, 273, 304, 334, 365 };
83
 
212 killagreg 84
#define LEAP_SECONDS_FROM_1980  15
41 ingob 85
 
86
// message sync bytes
87
#define UBX_SYNC1_CHAR  0xB5
88
#define UBX_SYNC2_CHAR  0x62
89
// protocoll identifier
90
#define UBX_CLASS_NAV   0x01
91
// message id
92
#define UBX_ID_POSLLH   0x02
93
#define UBX_ID_SOL              0x06
94
#define UBX_ID_VELNED   0x12
95
 
96
// ------------------------------------------------------------------------------------------------
97
// typedefs
98
 
99
 
100
// ubx parser state
101
typedef enum
102
{
103
        UBXSTATE_IDLE,
104
        UBXSTATE_SYNC1,
105
        UBXSTATE_SYNC2,
106
        UBXSTATE_CLASS,
107
        UBXSTATE_LEN1,
108
        UBXSTATE_LEN2,
109
        UBXSTATE_DATA,
110
        UBXSTATE_CKA,
111
        UBXSTATE_CKB
112
} ubxState_t;
113
 
114
typedef struct
115
{
116
        u32                     itow;           // ms GPS Millisecond Time of Week
117
        s32                     frac;           // ns remainder of rounded ms above
118
        s16                     week;           // GPS week
119
        u8                      GPSfix;         // GPSfix Type, range 0..6
120
        u8                      Flags;          // Navigation Status Flags
121
        s32                     ECEF_X;         // cm ECEF X coordinate
122
        s32                     ECEF_Y;         // cm ECEF Y coordinate
123
        s32                     ECEF_Z;         // cm ECEF Z coordinate
124
        u32                     PAcc;           // cm 3D Position Accuracy Estimate
125
        s32                     ECEFVX;         // cm/s ECEF X velocity
126
        s32                     ECEFVY;         // cm/s ECEF Y velocity
127
        s32                     ECEFVZ;         // cm/s ECEF Z velocity
128
        u32                     SAcc;           // cm/s Speed Accuracy Estimate
129
        u16                     PDOP;           // 0.01 Position DOP
130
        u8                      res1;           // reserved
131
        u8                      numSV;          // Number of SVs used in navigation solution
132
        u32                     res2;           // reserved
52 killagreg 133
        u8                      Status;     // invalid/newdata/processed
41 ingob 134
} __attribute__((packed)) ubx_nav_sol_t;
135
 
136
 
137
typedef struct
138
{
139
        u32                     itow;           // ms  GPS Millisecond Time of Week
140
        s32                     VEL_N;          // cm/s  NED north velocity
141
        s32                     VEL_E;          // cm/s  NED east velocity
142
        s32                     VEL_D;          // cm/s  NED down velocity
143
        u32                     Speed;          // cm/s  Speed (3-D)
144
        u32                     GSpeed;         // cm/s  Ground Speed (2-D)
145
        s32                     Heading;        // 1e-05 deg  Heading 2-D
146
        u32                     SAcc;           // cm/s  Speed Accuracy Estimate
147
        u32                     CAcc;           // deg  Course / Heading Accuracy Estimate
52 killagreg 148
        u8                      Status;         // invalid/newdata/processed
41 ingob 149
} __attribute__((packed)) ubx_nav_velned_t;
150
 
151
typedef struct
152
{
153
        u32                     itow;           // ms GPS Millisecond Time of Week
154
        s32                     LON;            // 1e-07 deg Longitude
155
        s32                     LAT;            // 1e-07 deg Latitude
156
        s32                     HEIGHT;         // mm Height above Ellipsoid
157
        s32                     HMSL;           // mm Height above mean sea level
158
        u32                     Hacc;           // mm Horizontal Accuracy Estimate
159
        u32                     Vacc;           // mm Vertical Accuracy Estimate
52 killagreg 160
        u8                      Status;         // invalid/newdata/processed
41 ingob 161
} __attribute__((packed)) ubx_nav_posllh_t;
162
 
163
 
164
 
165
//------------------------------------------------------------------------------------
166
// global variables
167
 
168
// local buffers for the incomming ubx messages
169
volatile ubx_nav_sol_t          UbxSol    = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, INVALID};
170
volatile ubx_nav_posllh_t       UbxPosLlh = {0,0,0,0,0,0,0, INVALID};
171
volatile ubx_nav_velned_t       UbxVelNed = {0,0,0,0,0,0,0,0,0, INVALID};
172
 
173
// shared buffer
174
gps_data_t              GPSData = {{0,0,0,INVALID},0,0,0,0,0,0,0, INVALID};
175
DateTime_t                      GPSDateTime = {0,0,0,0,0,0,0, INVALID};
176
 
146 killagreg 177
#define UBX_TIMEOUT 500 // 500 ms
178
u32 UBX_Timeout = 0;
41 ingob 179
 
180
//------------------------------------------------------------------------------------
181
// functions
182
 
183
u8 IsLeapYear(u16 year)
184
{
185
        if((year%400 == 0) || ( (year%4 == 0) && (year%100 != 0) ) ) return 1;
186
        else return 0;
187
}
188
/********************************************************/
189
/*  Calculates the UTC Time from the GPS week and tow   */
190
/********************************************************/
191
void SetGPSTime(DateTime_t * pTimeStruct)
192
{
193
        u32 Days, Seconds, Week;
194
        u16 YearPart;
195
        u32 * MonthDayTab = 0;
196
        u8 i;
197
 
198
 
199
        // if GPS data show valid time data
200
        if((UbxSol.Status != INVALID) && (UbxSol.Flags & FLAG_WKNSET) && (UbxSol.Flags & FLAG_TOWSET) )
201
        {
202
                Seconds = UbxSol.itow / 1000L;
203
                Week = (u32)UbxSol.week;
204
                // correct leap seconds since 1980
205
                if(Seconds < LEAP_SECONDS_FROM_1980)
206
                {
207
                        Week--;
208
                        Seconds = SECONDS_PER_WEEK - LEAP_SECONDS_FROM_1980 + Seconds;
209
                }
210
                else Seconds -= LEAP_SECONDS_FROM_1980;
211
 
212
                Days = DAYS_FROM_JAN01YEAR0001_TO_JAN6_1980;
213
                Days += (Week * DAYS_PER_WEEK);
214
                Days += Seconds / SECONDS_PER_DAY; // seperate days from GPS seconds of week
215
 
216
                pTimeStruct->Year = 1;
217
                YearPart = (u16)(Days / DAYS_PER_400YEARS);
218
                pTimeStruct->Year += YearPart * 400;
219
                Days = Days % DAYS_PER_400YEARS;
220
                YearPart = (u16)(Days / DAYS_PER_100YEARS);
221
                pTimeStruct->Year += YearPart * 100;
222
                Days = Days % DAYS_PER_100YEARS;
223
                YearPart = (u16)(Days / DAYS_PER_4YEARS);
224
                pTimeStruct->Year += YearPart * 4;
225
                Days = Days % DAYS_PER_4YEARS;
226
                if(Days < (3* DAYS_PER_YEAR)) YearPart = (u16)(Days / DAYS_PER_YEAR);
227
                else YearPart = 3;
228
                pTimeStruct->Year += YearPart;
229
                // calculate remaining days of year
230
                Days -= (u32)(YearPart *  DAYS_PER_YEAR);
231
                Days += 1;
232
                // check if current year is a leap year
233
                if(IsLeapYear(pTimeStruct->Year)) MonthDayTab = (u32*)Leap;
234
                else MonthDayTab = (u32*)Normal;
235
            // seperate month and day from days of year
236
                for ( i = 0; i < 12; i++ )
237
                {
238
                        if ( (MonthDayTab[i]< Days) && (Days <= MonthDayTab[i+1]) )
239
                        {
240
                                pTimeStruct->Month = i+1;
241
                                pTimeStruct->Day = Days - MonthDayTab[i];
242
                                i = 12;
243
                        }
244
                }
245
                Seconds = Seconds % SECONDS_PER_DAY; // remaining seconds of current day
246
                pTimeStruct->Hour = (u8)(Seconds / SECONDS_PER_HOUR);
247
                Seconds = Seconds % SECONDS_PER_HOUR; // remaining seconds of current hour
248
                pTimeStruct->Min = (u8)(Seconds / SECONDS_PER_MINUTE);
249
                Seconds = Seconds % SECONDS_PER_MINUTE; // remaining seconds of current minute
250
                pTimeStruct->Sec = (u8)(Seconds);
251
                pTimeStruct->mSec  = (u16)(UbxSol.itow % 1000L);
252
                pTimeStruct->Valid = 1;
253
        }
254
        else
255
        {
256
                pTimeStruct->Valid = 0;
257
        }
258
}
259
 
260
 
261
 
262
/********************************************************/
263
/*                  Initialize UBX Parser               */
264
/********************************************************/
265
void UBX_Init(void)
266
{
267
        // mark msg buffers invalid
268
        UbxSol.Status = INVALID;
269
        UbxPosLlh.Status = INVALID;
270
        UbxVelNed.Status = INVALID;
271
        GPSData.Status = INVALID;
146 killagreg 272
 
273
        UBX_Timeout = SetDelay(2 * UBX_Timeout);
41 ingob 274
}
275
 
276
/********************************************************/
277
/*            Upate GPS data stcructure                 */
278
/********************************************************/
279
void Update_GPSData (void)
280
{
146 killagreg 281
        static u32 Msg_Count_Timeout = 0;
41 ingob 282
        static u8 Msg_Count = 0;
283
 
284
        // the timeout is used to detect the delay between two message sets
285
        // and is used for synchronisation so that always a set is collected
286
        // that belongs together
287
        // _______NAVSOL|POSLLH|VELNED|___________________NAVSOL|POSLLH|VELNED|_____________
288
        //              |  8ms | 8ms  |         184 ms          |      |      |
289
        // msg_count:   0      1      2                         0      1      2
290
 
146 killagreg 291
        if(CheckDelay(Msg_Count_Timeout))       Msg_Count = 0;
41 ingob 292
        else Msg_Count++;
146 killagreg 293
        Msg_Count_Timeout = SetDelay(100); // reset ubx msg timeout
41 ingob 294
 
295
        // if a new set of ubx messages was collected
296
        if((Msg_Count >= 2))
297
        {       // if set is complete
298
                if((UbxSol.Status == NEWDATA) && (UbxPosLlh.Status == NEWDATA) && (UbxVelNed.Status == NEWDATA))
299
                {
146 killagreg 300
                        UBX_Timeout = SetDelay(UBX_TIMEOUT);
61 holgerb 301
                        DebugOut.Analog[9]++;
41 ingob 302
                        // update GPS data only if the status is INVALID or PROCESSED  and the last ubx message was received within less than 100 ms
303
                        if(GPSData.Status != NEWDATA) // if last data were processed
304
                        { // wait for new data at all neccesary ubx messages
305
                                GPSData.Status = INVALID;
306
                                // NAV SOL
307
                                GPSData.Flags =                                 UbxSol.Flags;
308
                                GPSData.NumOfSats =                     UbxSol.numSV;
309
                                GPSData.SatFix =                                UbxSol.GPSfix;
310
                                GPSData.Position_Accuracy =             UbxSol.PAcc;
311
                                GPSData.Speed_Accuracy =                UbxSol.SAcc;
312
                                SetGPSTime(&SystemTime); // update system time
313
                                // NAV POSLLH
314
                                GPSData.Position.Status =               INVALID;
315
                                GPSData.Position.Longitude =    UbxPosLlh.LON;
316
                                GPSData.Position.Latitude =     UbxPosLlh.LAT;
317
                                GPSData.Position.Altitude =     UbxPosLlh.HMSL;
318
                                GPSData.Position.Status =               NEWDATA;
319
                                // NAV VELNED
320
                                GPSData.Speed_East =                    UbxVelNed.VEL_E;
321
                                GPSData.Speed_North =                   UbxVelNed.VEL_N;
322
                                GPSData.Speed_Top       =                       -UbxVelNed.VEL_D;
323
                                GPSData.Speed_Ground =                  UbxVelNed.GSpeed;
324
                                GPSData.Heading =                               UbxVelNed.Heading;
325
 
326
                                GPSData.Status = NEWDATA; // new data available
327
                        } // EOF if(GPSData.Status != NEWDATA)
328
                } // EOF all ubx messages received
329
                // set state to collect new data
330
                UbxSol.Status =                                 PROCESSED;      // ready for new data
331
                UbxPosLlh.Status =                              PROCESSED;      // ready for new data
332
                UbxVelNed.Status =                              PROCESSED;      // ready for new data
333
        }
334
}
335
 
336
 
337
/********************************************************/
338
/*                   UBX Parser                         */
339
/********************************************************/
340
void UBX_Parser(u8 c)
341
{
342
        static ubxState_t ubxState = UBXSTATE_IDLE;
343
        static u16 msglen;
344
        static u8 cka, ckb;
345
        static u8 *ubxP, *ubxEp, *ubxSp; // pointers to data currently transfered
346
 
347
 
348
        //state machine
349
        switch (ubxState)       // ubx message parser
350
        {
351
                case UBXSTATE_IDLE: // check 1st sync byte
352
                        if (c == UBX_SYNC1_CHAR) ubxState = UBXSTATE_SYNC1;
353
                        else ubxState = UBXSTATE_IDLE; // out of synchronization
354
                        break;
355
 
356
                case UBXSTATE_SYNC1: // check 2nd sync byte
357
                        if (c == UBX_SYNC2_CHAR) ubxState = UBXSTATE_SYNC2;
358
                        else ubxState = UBXSTATE_IDLE; // out of synchronization
359
                        break;
360
 
361
                case UBXSTATE_SYNC2: // check msg class to be NAV
362
                        if (c == UBX_CLASS_NAV) ubxState = UBXSTATE_CLASS;
363
                        else ubxState = UBXSTATE_IDLE; // unsupported message class
364
                        break;
365
 
366
                case UBXSTATE_CLASS: // check message identifier
367
                        switch(c)
368
                        {
369
                                case UBX_ID_POSLLH: // geodetic position
370
                                        ubxP =  (u8 *)&UbxPosLlh; // data start pointer
371
                                        ubxEp = (u8 *)(&UbxPosLlh + 1); // data end pointer
372
                                        ubxSp = (u8 *)&UbxPosLlh.Status; // status pointer
373
                                        break;
374
 
375
                                case UBX_ID_SOL: // navigation solution
376
                                        ubxP =  (u8 *)&UbxSol; // data start pointer
377
                                        ubxEp = (u8 *)(&UbxSol + 1); // data end pointer
378
                                        ubxSp = (u8 *)&UbxSol.Status; // status pointer
379
                                        break;
380
 
381
                                case UBX_ID_VELNED: // velocity vector in tangent plane
382
                                        ubxP =  (u8 *)&UbxVelNed; // data start pointer
383
                                        ubxEp = (u8 *)(&UbxVelNed + 1); // data end pointer
384
                                        ubxSp = (u8 *)&UbxVelNed.Status; // status pointer
385
                                        break;
386
 
387
                                default:                        // unsupported identifier
388
                                        ubxState = UBXSTATE_IDLE;
389
                                        break;
390
                        }
391
                        if (ubxState != UBXSTATE_IDLE)
392
                        {
393
                                ubxState = UBXSTATE_LEN1;
394
                                cka = UBX_CLASS_NAV + c;
395
                                ckb = UBX_CLASS_NAV + cka;
396
                        }
397
                        break;
398
 
399
                case UBXSTATE_LEN1: // 1st message length byte
400
                        msglen = (u16)c; // lowbyte first
401
                        cka += c;
402
                        ckb += cka;
403
                        ubxState = UBXSTATE_LEN2;
404
                        break;
405
 
406
                case UBXSTATE_LEN2: // 2nd message length byte
407
                        msglen += ((u16)c)<<8; // high byte last
408
                        cka += c;
409
                        ckb += cka;
410
                        // if the old data are not processed so far then break parsing now
411
                        // to avoid writing new data in ISR during reading by another function
412
                        if ( *ubxSp == NEWDATA )
413
                        {
414
                                ubxState = UBXSTATE_IDLE;
415
                                Update_GPSData(); //update GPS info respectively
416
                        }
417
                        else // data invalid or allready processd
418
                        {
419
                                *ubxSp = INVALID; // mark invalid during buffer filling
420
                                ubxState = UBXSTATE_DATA;
421
                        }
422
                        break;
423
 
424
                case UBXSTATE_DATA: // collecting data
425
                        if (ubxP < ubxEp)
426
                        {
427
                                *ubxP++ = c; // copy curent data byte if any space is left
428
                                cka += c;
429
                                ckb += cka;
430
                                if (--msglen == 0)      ubxState = UBXSTATE_CKA; // switch to next state if all data was read
431
                        }
432
                        else // rx buffer overrun
433
                        {
434
                                ubxState = UBXSTATE_IDLE;
435
                        }
436
                        break;
437
 
438
                case UBXSTATE_CKA:
439
                        if (c == cka) ubxState = UBXSTATE_CKB;
440
                        else
441
                        {
442
                                *ubxSp = INVALID;
443
                                ubxState = UBXSTATE_IDLE;
444
                        }
445
                        break;
446
 
447
                case UBXSTATE_CKB:
448
                        if (c == ckb)
449
                        {
450
                                *ubxSp = NEWDATA; // new data are valid
451
                                Update_GPSData(); //update GPS info respectively
452
                        }
453
                        else
454
                        {       // if checksum not match then set data invalid
455
                                *ubxSp = INVALID;
456
                        }
457
                        ubxState = UBXSTATE_IDLE; // ready to parse new data
458
                        break;
459
 
460
                default: // unknown ubx state
461
                        ubxState = UBXSTATE_IDLE;
462
                        break;
463
 
464
        }
465
}