Subversion Repositories Projects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1704 - 1
#ifndef _UBX_H
2
#define _UBX_H
3
 
4
#include <inttypes.h>
5
 
6
 
7
// Satfix types for GPSData.SatFix
8
#define SATFIX_NONE                             0x00
9
#define SATFIX_DEADRECKOING             0x01
10
#define SATFIX_2D                               0x02
11
#define SATFIX_3D                               0x03
12
#define SATFIX_GPS_DEADRECKOING 0x04
13
#define SATFIX_TIMEONLY                 0x05
14
// Flags for interpretation of the GPSData.Flags
15
#define FLAG_GPSFIXOK                   0x01 // (i.e. within DOP & ACC Masks)
16
#define FLAG_DIFFSOLN                   0x02 // (is DGPS used)
17
#define FLAG_WKNSET                             0x04 // (is Week Number valid)
18
#define FLAG_TOWSET                             0x08 // (is Time of Week valid)
19
 
20
#define INVALID         0x00
21
#define NEWDATA         0x01
22
#define PROCESSED       0x02
23
 
24
typedef struct
25
{
26
        int32_t Longitude;  // in 1E-7 deg
27
        int32_t Latitude;       // in 1E-7 deg
28
        int32_t Altitude;       // in mm
29
        uint8_t Status;         // validity of data
30
} __attribute__((packed)) GPS_Pos_t;
31
 
32
 
33
typedef struct
34
{
35
    //u16                     MsgCycleTime;   // time in ms since last gps data
36
        GPS_Pos_t       Position;       // Lat/Lon/Alt
37
        uint8_t         Flags;                  // Status Flags
38
        uint8_t         NumOfSats;              // number of satelites
39
        uint8_t         SatFix;                 // type of satfix
40
        uint32_t        Position_Accuracy;      // in cm 3d position accuracy
41
        int32_t         Speed_North;    // in cm/s
42
        int32_t         Speed_East;             // in cm/s
43
        int32_t         Speed_Top;              // in cm/s
44
        uint32_t        Speed_Ground;   // 2D ground speed in cm/s
45
        int32_t         Heading;                // 1e-05 deg  Heading 2-D (curent flight direction)
46
        uint32_t        Speed_Accuracy; // in cm/s 3d velocity accuracy
47
        uint8_t         Status;                 // status of data
48
} __attribute__((packed)) gps_data_t;
49
 
50
// The data are valid if the GPSData.Status is NEWDATA or PROCESSED.
51
// To achieve new data after reading the GPSData.Status should be set to PROCESSED.
52
extern gps_data_t  GPSData;
53
extern uint16_t CheckGPSOkay;
54
 
55
void UBX_Init(void);
56
void UBX_Parser(uint8_t c);
57
 
58
#endif // _UBX_H