Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
5dabdd5d
Commit
5dabdd5d
authored
Apr 04, 2020
by
DonLakeFlyer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
parent
40d5f1ff
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
3 deletions
+13
-3
ChangeLog.md
ChangeLog.md
+1
-0
APMFirmwarePlugin.cc
src/FirmwarePlugin/APM/APMFirmwarePlugin.cc
+5
-0
FlightDisplayView.qml
src/FlightDisplay/FlightDisplayView.qml
+1
-2
GuidedActionsController.qml
src/FlightDisplay/GuidedActionsController.qml
+6
-1
No files found.
ChangeLog.md
View file @
5dabdd5d
...
...
@@ -7,6 +7,7 @@ Note: This file only contains high level features or important fixes.
### 4.0.6 - Not yet released
*
Analyze/Log Download - Fix download on mobile versions of QGC
*
Fly: Fix problems where Continue Mission and Change Altitude were not available after a Mission Pause.
### 4.0.5 - Stable
...
...
src/FirmwarePlugin/APM/APMFirmwarePlugin.cc
View file @
5dabdd5d
...
...
@@ -936,6 +936,11 @@ void APMFirmwarePlugin::guidedModeChangeAltitude(Vehicle* vehicle, double altitu
return
;
}
if
(
abs
(
altitudeChange
)
<
0.01
)
{
// This prevents unecessary changes to Guided mode when the users selects pause and doesn't really touch the altitude slider
return
;
}
setGuidedMode
(
vehicle
,
true
);
mavlink_message_t
msg
;
...
...
src/FlightDisplay/FlightDisplayView.qml
View file @
5dabdd5d
...
...
@@ -639,8 +639,7 @@ Item {
{
name
:
qsTr
(
"
Action
"
),
iconSource
:
"
/res/action.svg
"
,
buttonVisible
:
!
_guidedController
.
showPause
,
buttonEnabled
:
_anyActionAvailable
,
buttonVisible
:
_anyActionAvailable
,
action
:
-
1
}
]
...
...
src/FlightDisplay/GuidedActionsController.qml
View file @
5dabdd5d
...
...
@@ -203,7 +203,12 @@ Item {
}
_outputState
()
}
// End of hack
onShowChangeAltChanged
:
{
if
(
_corePlugin
.
guidedActionsControllerLogging
())
{
console
.
log
(
"
showChangeAlt
"
,
showChangeAlt
)
}
_outputState
()
}
on_VehicleFlyingChanged
:
{
_outputState
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment