Subversion Repositories Projects

Rev

Rev 2194 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2194 Rev 2197
Line 27... Line 27...
27
 
27
 
28
extern nmeaPOS NMEApos;
28
extern nmeaPOS NMEApos;
Line 29... Line -...
29
extern nmeaPOS NMEATarget;
-
 
30
 
29
extern nmeaPOS NMEATarget;
31
 
30
 
32
 
31
 
33
int nmea_move_horz(
32
int nmea_move_horz(
34
    const nmeaPOS *start_pos,   /**< Start position in radians */
33
    const nmeaPOS *start_pos,   /**< Start position in radians */
Line 43... Line 42...
43
    nmeaPOS *end_pos,           /**< Result position in radians */
42
    nmeaPOS *end_pos,           /**< Result position in radians */
44
    double azimuth,             /**< Azimuth (degree) [0, 359] */
43
    double azimuth,             /**< Azimuth (degree) [0, 359] */
45
    double distance             /**< Distance (km) */
44
    double distance             /**< Distance (km) */
46
    );
45
    );
Line -... Line 46...
-
 
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
 
47
 
56