Subversion Repositories NaviCtrl

Rev

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