Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1734 | - | 1 | /* |
2 | * tracking.h |
||
3 | * |
||
4 | * Created on: 13.02.2012 |
||
5 | * Author: cebra |
||
6 | */ |
||
7 | |||
8 | #ifndef TRACKING_H_ |
||
9 | #define TRACKING_H_ |
||
10 | |||
11 | |||
12 | |||
13 | |||
14 | |||
15 | |||
16 | typedef struct { |
||
17 | double Home_Lon; // in degrees |
||
18 | double Home_Lat; // in degrees |
||
19 | int32_t Home_Lon7; // in 1E-7 degrees |
||
20 | int32_t Home_Lat7; // in 1E-7 degrees |
||
21 | int32_t Home_Alt; // in mm |
||
22 | int16_t direction; // ermittelte Konstante aus Mittelposition Antenne geo.bearing - navi_data.CompassHeading |
||
23 | }__attribute__((packed)) HomePos_t; |
||
24 | |||
25 | extern int8_t NMEAsatsInUse; // Number of satelites currently in use |
||
26 | extern int32_t NMEAlatitude, NMEAlongitude; |
||
27 | extern char NMEATime[9]; |
||
28 | |||
29 | void Tracking_NMEA(void); |
||
30 | uint8_t decodeNMEA(void); |
||
31 | |||
32 | |||
33 | |||
34 | |||
35 | #endif /* TRACKING_H_ */ |