@ -101,10 +101,10 @@ Item {
@@ -101,10 +101,10 @@ Item {
property bool showLand: _guidedActionsEnabled && _activeVehicle . guidedModeSupported && _vehicleArmed && ! _activeVehicle . fixedWing && ! _vehicleInLandMode
property bool showStartMission: _guidedActionsEnabled && _missionAvailable && ! _missionActive && ! _vehicleFlying
property bool showContinueMission: _guidedActionsEnabled && _missionAvailable && ! _missionActive && _vehicleArmed && _vehicleFlying && ( _currentMissionIndex < _missionItemCount - 1 )
property bool showPause: _guidedActionsEnabled && _vehicleArmed && _activeVehicle . pauseVehicleSupported && _vehicleFlying && ! _vehiclePaused
property bool showPause: _guidedActionsEnabled && _vehicleArmed && _activeVehicle . pauseVehicleSupported && _vehicleFlying && ! _vehiclePaused && ! _fixedWingOnApproach
property bool showChangeAlt: _guidedActionsEnabled && _vehicleFlying && _activeVehicle . guidedModeSupported && _vehicleArmed && ! _missionActive
property bool showOrbit: _guidedActionsEnabled && ! _hideOrbit && _vehicleFlying && _activeVehicle . orbitModeSupported && ! _missionActive
property bool showLandAbort: _guidedActionsEnabled && _vehicleFlying && _activeVehicle . fixedWing && _vehicleLanding
property bool showLandAbort: _guidedActionsEnabled && _vehicleFlying && _fixedWingOnApproach
property bool showGotoLocation: _guidedActionsEnabled && _vehicleFlying
/ / N o t e : T h e ' _ m i s s i o n I t e m C o u n t - 2 ' i s a h a c k t o n o t t r i g g e r r e s u m e m i s s i o n w h e n a m i s s i o n e n d s w i t h a n R T L i t e m
@ -132,6 +132,7 @@ Item {
@@ -132,6 +132,7 @@ Item {
property bool _hideOrbit : ! QGroundControl . corePlugin . options . guidedBarShowOrbit
property bool _vehicleWasFlying : false
property bool _rcRSSIAvailable : _activeVehicle ? _activeVehicle . rcRSSI > 0 && _activeVehicle . rcRSSI <= 100 : false
property bool _fixedWingOnApproach : _activeVehicle ? _activeVehicle . fixedWing && _vehicleLanding : false
/ / Y o u c a n t u r n o n l o g o u t p u t f o r G u i d e d A c t i o n s C o n t r o l l e r b y t u r n i n g o n G u i d e d A c t i o n s C o n t r o l l e r L o g c a t e g o r y
property bool __guidedModeSupported : _activeVehicle ? _activeVehicle . guidedModeSupported : false