Subversion Repositories Projects

Rev

Rev 2205 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2205 Rev 2209
Line 2... Line 2...
2
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2
//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Line 3... Line 3...
3
 
3
 
4
//############################################################################
4
//############################################################################
5
//# HISTORY  gps.h
5
//# HISTORY  gps.h
-
 
6
//#
-
 
7
//#
-
 
8
//#
-
 
9
//#
-
 
10
//#
-
 
11
//#
-
 
12
//#
-
 
13
//#
-
 
14
//# 22.09.2015 Starter
-
 
15
//# - PKT-Pos von lat lon auf latitude und longitude umbenannt
6
//#
16
//#
7
//# 20.06.2014 OG - NEU
17
//# 20.06.2014 OG - NEU
Line 8... Line 18...
8
//############################################################################
18
//############################################################################
9
 
19
 
Line 10... Line -...
10
 
-
 
11
#ifndef GPS_H_
-
 
12
#define GPS_H_
-
 
13
 
-
 
14
 
20
 
15
 
21
#ifndef GPS_H_
16
GPS_PosDev_t gps_Deviation( GPS_Pos_t pos1, GPS_Pos_t pos2 );
22
#define GPS_H_
17
 
23
 
18
/**
24
/**
19
 * Position data in fractional degrees or radians
25
 * Position data in fractional degrees or radians
20
 */
26
 */
Line 21... Line 27...
21
typedef struct _nmeaPOS
27
typedef struct _nmeaPOS
Line -... Line 28...
-
 
28
{
-
 
29
    int32_t latitude;          // Latitude in 1e-7 Grad
22
{
30
    int32_t longitude;         // Longitude in 1e-7 Grad
23
    int32_t lat;         /**< Latitude */
31
 
24
    int32_t lon;         /**< Longitude */
32
} nmeaPOS;
25
 
33
 
26
} nmeaPOS;
34
 
Line 27... Line -...
27
 
-
 
-
 
35
 
28
typedef struct _positionOffset
36
typedef struct _positionOffset
29
{
37
{
-
 
38
        int32_t latitude;                       // latitude offset in mm
Line 30... Line 39...
30
        int32_t offset_lat;
39
        int32_t longitude;                      // longitude offset in mm
31
        int32_t offset_long;
40
}positionOffset;
32
}positionOffset;
41