We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad1e5d commit 32ba122Copy full SHA for 32ba122
src/main/navigation/navigation.c
@@ -4088,10 +4088,12 @@ bool isNavHoldPositionActive(void)
4088
return true;
4089
}
4090
4091
+ // No hold required for basic WP type unless it's the last mission waypoint
4092
if (FLIGHT_MODE(NAV_WP_MODE)) {
4093
return posControl.waypointList[posControl.activeWaypointIndex].action != NAV_WP_ACTION_WAYPOINT || isLastMissionWaypoint();
4094
4095
4096
+ // No hold required for Trackback WPs or for fixed wing autoland WPs not flagged as hold points (returned above if they are)
4097
return !FLIGHT_MODE(NAV_FW_AUTOLAND) && !posControl.flags.rthTrackbackActive;
4098
4099
0 commit comments