Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
|
Integrated Navigation System interface. More...
#include "modules/ins/ins.h"
#include "modules/gps/gps.h"
#include "state.h"
#include "generated/flight_plan.h"
Go to the source code of this file.
Functions | |
void | ins_init_origin_i_from_flightplan (struct LtpDef_i *ltp_def) |
initialize the local origin (ltp_def in fixed point) from flight plan position More... | |
void WEAK | ins_reset_local_origin (void) |
INS local origin reset. More... | |
void WEAK | ins_reset_altitude_ref (void) |
INS altitude reference reset. More... | |
void WEAK | ins_reset_vertical_pos (void) |
INS vertical position reset. More... | |
void WEAK | ins_reset_utm_zone (struct UtmCoor_f *utm) |
INS utm zone reset. More... | |
Integrated Navigation System interface.
Definition in file ins.c.
void ins_init_origin_i_from_flightplan | ( | struct LtpDef_i * | ltp_def | ) |
initialize the local origin (ltp_def in fixed point) from flight plan position
Definition at line 39 of file ins.c.
References LlaCoor_i::alt, LtpDef_i::hmsl, LlaCoor_i::lat, LlaCoor_i::lon, ltp_def, ltp_def_from_lla_i(), and stateSetLocalOrigin_i().
Referenced by ins_int_init(), ins_module_wrapper_init(), and ins_vectornav_init().
void WEAK ins_reset_altitude_ref | ( | void | ) |
INS altitude reference reset.
Reset only vertical reference to the current altitude. Does nothing if not implemented by specific INS algorithm.
Definition at line 65 of file ins.c.
Referenced by nav_reset_alt().
void WEAK ins_reset_local_origin | ( | void | ) |
INS local origin reset.
Reset horizontal and vertical reference to the current position. Does nothing if not implemented by specific INS algorithm.
Definition at line 55 of file ins.c.
References gps, stateSetLocalUtmOrigin_f(), and utm_float_from_gps().
Referenced by nav_reset_reference().
void WEAK ins_reset_utm_zone | ( | struct UtmCoor_f * | utm | ) |
INS utm zone reset.
Reset UTM zone according the the actual position. Only used with fixedwing firmware. Can be overwritte by specifc INS implementation.
utm | initial utm zone, returns the corrected utm position |
Definition at line 70 of file ins.c.
References gps, GPS_VALID_POS_UTM_BIT, lla_of_utm_f(), stateSetLocalUtmOrigin_f(), utm_of_lla_f(), GpsState::utm_pos, GpsState::valid_fields, UtmCoor_f::zone, and UtmCoor_i::zone.
Referenced by nav_reset_utm_zone().