Subversion Repositories Projects

Rev

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

Rev 2192 Rev 2194
Line 27... Line 27...
27
 
27
 
28
extern nmeaPOS NMEApos;
28
extern nmeaPOS NMEApos;
Line -... Line 29...
-
 
29
extern nmeaPOS NMEATarget;
29
extern nmeaPOS NMEATarget;
30
 
30
 
31
 
31
 
32
 
32
int nmea_move_horz(
33
int nmea_move_horz(
33
    const nmeaPOS *start_pos,   /**< Start position in radians */
34
    const nmeaPOS *start_pos,   /**< Start position in radians */
Line 42... Line 43...
42
    nmeaPOS *end_pos,           /**< Result position in radians */
43
    nmeaPOS *end_pos,           /**< Result position in radians */
43
    double azimuth,             /**< Azimuth (degree) [0, 359] */
44
    double azimuth,             /**< Azimuth (degree) [0, 359] */
44
    double distance             /**< Distance (km) */
45
    double distance             /**< Distance (km) */
45
    );
46
    );
Line 46... Line -...
46
 
-
 
47
 
-
 
48
int followme_calculate_offset(
-
 
49
    const nmeaPOS *pkt_pos,     /**< Start position in radians */
-
 
50
    nmeaPOS *target_pos,        /**< Result position in radians */
-
 
51
    int d_lat,                  /**< Distance lat(m) */
-
 
52
    int d_lon                   /**< Distance long(m) */
-
 
53
    );
-
 
54
 
-
 
55
 
-
 
56
 
47