|
Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
|
Include dependency graph for common_nav.h:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Data Structures | |
| struct | point |
Macros | |
| #define | WaypointX(_wp) (waypoints[_wp].x) |
| #define | WaypointY(_wp) (waypoints[_wp].y) |
| #define | WaypointAlt(_wp) (waypoints[_wp].a) |
| waypoint altitude in m above MSL | |
| #define | Height(_h) (_h + ground_alt) |
| #define | NavSetGroundReferenceHere() ({ nav_reset_reference(); nav_update_waypoints_alt(); false; }) |
| #define | NavSetAltitudeReferenceHere() ({ nav_reset_alt(); nav_update_waypoints_alt(); false; }) |
| #define | NavSetWaypointHere(_wp) |
| #define | NavSetWaypointHereSend(_wp) |
| #define | NavSetWaypointPosAndAltHere(_wp) |
| #define | NavSetWaypointDistBehind(_wp, _ref, dist) |
Functions | |
| void | nav_move_waypoint (uint8_t wp_id, float utm_east, float utm_north, float alt) |
| Move a waypoint to given UTM coordinates. | |
| void | nav_move_waypoint_enu (uint8_t wp_id, float x, float y, float alt) |
| Move a waypoint in local frame. | |
| void | nav_move_waypoint_point (uint8_t wp_id, struct point *p) |
| Move a waypoint from point structure (local frame). | |
| void | nav_send_waypoint (uint8_t wp_id) |
| Send a waypoint throught default telemetry channel. | |
| void | compute_dist2_to_home (void) |
| Computes squared distance to the HOME waypoint potentially sets too_far_from_home. | |
| void | nav_reset_utm_zone (void) |
| Reset the UTM zone to current GPS fix. | |
| void | nav_reset_reference (void) |
| Reset the geographic reference to the current GPS fix. | |
| void | nav_reset_alt (void) |
| Reset the altitude reference to the current GPS alt. | |
| void | nav_update_waypoints_alt (void) |
| Shift altitude of the waypoint according to a new ground altitude. | |
| void | common_nav_periodic_task (void) |
| float | get_time_to_home (void) |
| Compute time to home use wind and airspeed when available. | |
Variables | |
| float | max_dist_from_home |
| float | dist2_to_home |
| float | dist2_to_wp |
| bool | too_far_from_home |
| const uint8_t | nb_waypoint |
| struct point | waypoints [] |
| float | ground_alt |
| size == nb_waypoint, waypoint 0 is a dummy waypoint | |
| int32_t | nav_utm_east0 |
| int32_t | nav_utm_north0 |
| uint8_t | nav_utm_zone0 |
| struct point |
Definition at line 39 of file common_nav.h.
| Data Fields | ||
|---|---|---|
| float | a | |
| float | x | |
| float | y | |
| #define Height | ( | _h | ) | (_h + ground_alt) |
Definition at line 49 of file common_nav.h.
| #define NavSetAltitudeReferenceHere | ( | ) | ({ nav_reset_alt(); nav_update_waypoints_alt(); false; }) |
Definition at line 79 of file common_nav.h.
| #define NavSetGroundReferenceHere | ( | ) | ({ nav_reset_reference(); nav_update_waypoints_alt(); false; }) |
Definition at line 77 of file common_nav.h.
Definition at line 101 of file common_nav.h.
Definition at line 81 of file common_nav.h.
Definition at line 87 of file common_nav.h.
Definition at line 94 of file common_nav.h.
waypoint altitude in m above MSL
Definition at line 48 of file common_nav.h.
Definition at line 169 of file common_nav.c.
References block_time, foo, NAVIGATION_FREQUENCY, and stage_time.
Referenced by navigation_task().
Here is the caller graph for this function:Computes squared distance to the HOME waypoint potentially sets too_far_from_home.
Computes squared distance to the HOME waypoint potentially sets too_far_from_home.
Updates dist2_to_home and potentially sets too_far_from_home
Definition at line 326 of file navigation.c.
References RotorcraftNavigation::dist2_to_home, dist2_to_home, foo, get_dist2_to_waypoint(), max_dist2_from_home, nav, stateGetPositionEnu_f(), RotorcraftNavigation::too_far_from_home, too_far_from_home, waypoints, EnuCoor_f::x, point::x, EnuCoor_f::y, and point::y.
Referenced by autopilot_static_periodic(), nav_home(), and nav_periodic_task().
Here is the call graph for this function:
Here is the caller graph for this function:Compute time to home use wind and airspeed when available.
Definition at line 71 of file common_nav.c.
References float_vect2_norm(), foo, stateGetAirspeed_f(), stateGetHorizontalWindspeed_f(), stateGetPositionEnu_f(), stateIsAirspeedValid(), stateIsWindspeedValid(), waypoints, FloatVect2::x, EnuCoor_f::x, point::x, FloatVect2::y, EnuCoor_f::y, and point::y.
Here is the call graph for this function:Move a waypoint to given UTM coordinates.
| [in] | wp_id | Waypoint ID |
| [in] | ux | UTM x (east) coordinate |
| [in] | uy | UTM y (north) coordinate |
| [in] | alt | Altitude above MSL. |
Definition at line 180 of file common_nav.c.
References point::a, LlaCoor_f::alt, foo, max_dist_from_home, nav_utm_east0, nav_utm_north0, nb_waypoint, waypoints, point::x, and point::y.
Referenced by nav_parse_MOVE_WP().
Here is the caller graph for this function:Move a waypoint in local frame.
| [in] | wp_id | Waypoint ID |
| [in] | ux | x (east) coordinate |
| [in] | uy | y (north) coordinate |
| [in] | alt | Altitude above MSL. |
Definition at line 200 of file common_nav.c.
References point::a, LlaCoor_f::alt, foo, max_dist_from_home, nb_waypoint, waypoints, point::x, and point::y.
Referenced by nav_lace_run(), nav_move_waypoint_point(), nav_rosette_run(), and nav_trinity_run().
Here is the caller graph for this function:Move a waypoint from point structure (local frame).
| [in] | wp_id | Waypoint ID |
| [in] | p | new point |
Definition at line 218 of file common_nav.c.
References nav_move_waypoint_enu(), and p.
Referenced by cloud_sim_move(), and cloud_sim_reset().
Here is the call graph for this function:
Here is the caller graph for this function:Reset the altitude reference to the current GPS alt.
Definition at line 241 of file navigation.c.
References foo, ground_alt, INS_RESET_VERTICAL_REF, previous_ground_alt, stateGetHmslOrigin_f(), and waypoints_localize_all().
Here is the call graph for this function:Reset the geographic reference to the current GPS fix.
Definition at line 234 of file navigation.c.
References UtmCoor_f::east, foo, ground_alt, INS_RESET_REF, nav_utm_east0, nav_utm_north0, nav_utm_zone0, UtmCoor_f::north, previous_ground_alt, stateGetHmslOrigin_f(), stateGetUtmOrigin_f(), waypoints_localize_all(), and UtmCoor_f::zone.
Here is the call graph for this function:Reset the UTM zone to current GPS fix.
Definition at line 107 of file common_nav.c.
References foo, gps, GPS_VALID_POS_UTM_BIT, ground_alt, lla_of_utm_f(), nav_utm_east0, nav_utm_north0, nav_utm_zone0, stateSetLocalUtmOrigin_f(), utm_of_lla_f(), GpsState::utm_pos, GpsState::valid_fields, UtmCoor_f::zone, and UtmCoor_i::zone.
Here is the call graph for this function:Send a waypoint throught default telemetry channel.
| [in] | wp_id | Waypoint ID |
Definition at line 226 of file common_nav.c.
References point::a, DefaultChannel, DefaultDevice, foo, nav_utm_east0, nav_utm_north0, nav_utm_zone0, nb_waypoint, waypoints, point::x, point::y, and UtmCoor_f::zone.
Referenced by cloud_sim_move(), cloud_sim_reset(), nav_lace_run(), nav_rosette_run(), and nav_trinity_run().
Here is the caller graph for this function:Shift altitude of the waypoint according to a new ground altitude.
Definition at line 161 of file common_nav.c.
References point::a, foo, ground_alt, previous_ground_alt, and waypoints.
|
extern |
Definition at line 38 of file common_nav.c.
Referenced by compute_dist2_to_home(), monitor_task(), and nav_home().
|
extern |
Definition at line 39 of file common_nav.c.
Referenced by nav_approaching_xy(), nav_home(), nav_periodic_task(), and rotwing_state_choose_state_by_dist().
|
extern |
size == nb_waypoint, waypoint 0 is a dummy waypoint
altitude of the ground in m above MSL
Definition at line 46 of file common_nav.c.
Referenced by baro_ets_read_event(), baro_MS5534A_event(), formation_flight(), formation_init(), ins_alt_float_update_baro(), nav_cube_run(), nav_home(), nav_init(), nav_lace_run(), nav_reset_alt(), nav_reset_reference(), nav_reset_utm_zone(), nav_rosette_run(), nav_trinity_run(), nav_update_waypoints_alt(), parachute_compute_approach(), send_nav_ref(), stop_formation(), tcas_init(), tcas_periodic_task_1Hz(), and tcas_periodic_task_4Hz().
|
extern |
Definition at line 53 of file navigation.c.
Referenced by mission_point_of_lla(), nav_move_waypoint(), and nav_move_waypoint_enu().
|
extern |
Definition at line 48 of file common_nav.c.
Referenced by copilot_parse_move_wp_dl(), DownlinkSendWp(), ins_alt_float_init(), ins_float_invariant_init(), ins_gps_passthrough_init(), ins_mekf_wind_wrapper_init(), ins_xsens700_init(), ins_xsens_init(), mission_point_of_lla(), nav_move_waypoint(), nav_parse_MOVE_WP(), nav_reset_reference(), nav_reset_utm_zone(), nav_send_waypoint(), put_lat_lon_home(), and send_nav_ref().
|
extern |
Definition at line 49 of file common_nav.c.
Referenced by copilot_parse_move_wp_dl(), DownlinkSendWp(), ins_alt_float_init(), ins_float_invariant_init(), ins_gps_passthrough_init(), ins_mekf_wind_wrapper_init(), ins_xsens700_init(), ins_xsens_init(), mission_point_of_lla(), nav_move_waypoint(), nav_parse_MOVE_WP(), nav_reset_reference(), nav_reset_utm_zone(), nav_send_waypoint(), put_lat_lon_home(), and send_nav_ref().
|
extern |
Definition at line 50 of file common_nav.c.
Referenced by copilot_parse_move_wp_dl(), DownlinkSendWp(), gps_cb(), gps_cb(), gps_cb(), gps_cb(), ins_alt_float_init(), ins_alt_float_update_gps(), ins_float_invariant_init(), ins_float_invariant_update_gps(), ins_gps_passthrough_init(), ins_mekf_wind_wrapper_init(), ins_xsens700_init(), ins_xsens_init(), mission_point_of_lla(), nav_parse_MOVE_WP(), nav_reset_reference(), nav_reset_utm_zone(), nav_send_waypoint(), put_lat_lon_home(), and send_nav_ref().
Definition at line 43 of file common_nav.c.
|
extern |
Definition at line 41 of file common_nav.c.
Referenced by autopilot_failsafe_checks(), and compute_dist2_to_home().
|
extern |
Definition at line 44 of file common_nav.c.