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
e666acf9
Commit
e666acf9
authored
Feb 07, 2020
by
Gus Grubba
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bringing preflight checklist to mainline QGC
parent
ddb9c662
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
713 additions
and
2 deletions
+713
-2
qgroundcontrol.qrc
qgroundcontrol.qrc
+9
-0
DefaultChecklist.qml
src/FlightDisplay/DefaultChecklist.qml
+92
-0
FixedWingChecklist.qml
src/FlightDisplay/FixedWingChecklist.qml
+92
-0
MultiRotorChecklist.qml
src/FlightDisplay/MultiRotorChecklist.qml
+87
-0
PreFlightCheckList.qml
src/FlightDisplay/PreFlightCheckList.qml
+149
-0
RoverChecklist.qml
src/FlightDisplay/RoverChecklist.qml
+81
-0
SubChecklist.qml
src/FlightDisplay/SubChecklist.qml
+82
-0
VTOLChecklist.qml
src/FlightDisplay/VTOLChecklist.qml
+119
-0
QGCOptions.h
src/api/QGCOptions.h
+2
-2
No files found.
qgroundcontrol.qrc
View file @
e666acf9
...
...
@@ -19,6 +19,14 @@
<file alias="TelemetryRSSIIndicator.qml">src/ui/toolbar/TelemetryRSSIIndicator.qml</file>
<file alias="VTOLModeIndicator.qml">src/ui/toolbar/VTOLModeIndicator.qml</file>
</qresource>
<qresource prefix="/checklists">
<file alias="DefaultChecklist.qml">src/FlightDisplay/DefaultChecklist.qml</file>
<file alias="MultiRotorChecklist.qml">src/FlightDisplay/MultiRotorChecklist.qml</file>
<file alias="FixedWingChecklist.qml">src/FlightDisplay/FixedWingChecklist.qml</file>
<file alias="VTOLChecklist.qml">src/FlightDisplay/VTOLChecklist.qml</file>
<file alias="RoverChecklist.qml">src/FlightDisplay/RoverChecklist.qml</file>
<file alias="SubChecklist.qml">src/FlightDisplay/SubChecklist.qml</file>
</qresource>
<qresource prefix="/qml">
<file alias="QGroundControl/Controls/HeightIndicator.qml">src/QmlControls/HeightIndicator.qml</file>
<file alias="QGroundControl/Controls/QGCDynamicObjectManager.qml">src/QmlControls/QGCDynamicObjectManager.qml</file>
...
...
@@ -65,6 +73,7 @@
<file alias="PlanToolBar.qml">src/PlanView/PlanToolBar.qml</file>
<file alias="PlanToolBarIndicators.qml">src/PlanView/PlanToolBarIndicators.qml</file>
<file alias="PlanView.qml">src/PlanView/PlanView.qml</file>
<file alias="PreFlightCheckList.qml">src/FlightDisplay/PreFlightCheckList.qml</file>
<file alias="PX4FlowSensor.qml">src/VehicleSetup/PX4FlowSensor.qml</file>
<file alias="QGCInstrumentWidget.qml">src/FlightMap/Widgets/QGCInstrumentWidget.qml</file>
<file alias="QGCInstrumentWidgetAlternate.qml">src/FlightMap/Widgets/QGCInstrumentWidgetAlternate.qml</file>
...
...
src/FlightDisplay/DefaultChecklist.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
Item
{
property
var
model
:
listModel
PreFlightCheckModel
{
id
:
listModel
PreFlightCheckGroup
{
name
:
qsTr
(
"
Generic Initial checks
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Hardware
"
)
manualText
:
qsTr
(
"
Props mounted? Wings secured? Tail secured?
"
)
}
PreFlightBatteryCheck
{
failurePercent
:
40
allowFailurePercentOverride
:
false
}
PreFlightSensorsHealthCheck
{
}
PreFlightGPSCheck
{
failureSatCount
:
9
allowOverrideSatCount
:
true
}
PreFlightRCCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Please arm the vehicle here
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Actuators
"
)
manualText
:
qsTr
(
"
Move all control surfaces. Did they work properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Motors
"
)
manualText
:
qsTr
(
"
Propellers free? Then throttle up gently. Working properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission
"
)
manualText
:
qsTr
(
"
Please confirm mission is valid (waypoints valid, no terrain collision).
"
)
}
PreFlightSoundCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Last preparations before launch
"
)
// Check list item group 2 - Final checks before launch
PreFlightCheckButton
{
name
:
qsTr
(
"
Payload
"
)
manualText
:
qsTr
(
"
Configured and started? Payload lid closed?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Wind & weather
"
)
manualText
:
qsTr
(
"
OK for your platform? Lauching into the wind?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Flight area
"
)
manualText
:
qsTr
(
"
Launch area and path free of obstacles/people?
"
)
}
}
}
}
src/FlightDisplay/FixedWingChecklist.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
Item
{
property
var
model
:
listModel
PreFlightCheckModel
{
id
:
listModel
PreFlightCheckGroup
{
name
:
qsTr
(
"
Fixed Wing Initial Checks
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Hardware
"
)
manualText
:
qsTr
(
"
Props mounted? Wings secured? Tail secured?
"
)
}
PreFlightBatteryCheck
{
failurePercent
:
40
allowFailurePercentOverride
:
false
}
PreFlightSensorsHealthCheck
{
}
PreFlightGPSCheck
{
failureSatCount
:
9
allowOverrideSatCount
:
true
}
PreFlightRCCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Please arm the vehicle here
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Actuators
"
)
manualText
:
qsTr
(
"
Move all control surfaces. Did they work properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Motors
"
)
manualText
:
qsTr
(
"
Propellers free? Then throttle up gently. Working properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission
"
)
manualText
:
qsTr
(
"
Please confirm mission is valid (waypoints valid, no terrain collision).
"
)
}
PreFlightSoundCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Last preparations before launch
"
)
// Check list item group 2 - Final checks before launch
PreFlightCheckButton
{
name
:
qsTr
(
"
Payload
"
)
manualText
:
qsTr
(
"
Configured and started? Payload lid closed?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Wind & weather
"
)
manualText
:
qsTr
(
"
OK for your platform? Lauching into the wind?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Flight area
"
)
manualText
:
qsTr
(
"
Launch area and path free of obstacles/people?
"
)
}
}
}
}
src/FlightDisplay/MultiRotorChecklist.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
Item
{
property
var
model
:
listModel
PreFlightCheckModel
{
id
:
listModel
PreFlightCheckGroup
{
name
:
qsTr
(
"
Multirotor Initial Checks
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Hardware
"
)
manualText
:
qsTr
(
"
Props mounted and secured?
"
)
}
PreFlightBatteryCheck
{
failurePercent
:
40
allowFailurePercentOverride
:
false
}
PreFlightSensorsHealthCheck
{
}
PreFlightGPSCheck
{
failureSatCount
:
9
allowOverrideSatCount
:
true
}
PreFlightRCCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Please arm the vehicle here
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Motors
"
)
manualText
:
qsTr
(
"
Propellers free? Then throttle up gently. Working properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission
"
)
manualText
:
qsTr
(
"
Please confirm mission is valid (waypoints valid, no terrain collision).
"
)
}
PreFlightSoundCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Last preparations before launch
"
)
// Check list item group 2 - Final checks before launch
PreFlightCheckButton
{
name
:
qsTr
(
"
Payload
"
)
manualText
:
qsTr
(
"
Configured and started? Payload lid closed?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Wind & weather
"
)
manualText
:
qsTr
(
"
OK for your platform?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Flight area
"
)
manualText
:
qsTr
(
"
Launch area and path free of obstacles/people?
"
)
}
}
}
}
src/FlightDisplay/PreFlightCheckList.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
Rectangle
{
width
:
mainColumn
.
width
+
ScreenTools
.
defaultFontPixelWidth
*
3
height
:
mainColumn
.
height
+
ScreenTools
.
defaultFontPixelHeight
color
:
qgcPal
.
windowShade
radius
:
3
Loader
{
id
:
modelContainer
source
:
"
/checklists/DefaultChecklist.qml
"
}
property
bool
_passed
:
false
function
_handleGroupPassedChanged
(
index
,
passed
)
{
if
(
passed
)
{
// Collapse current group
var
group
=
checkListRepeater
.
itemAt
(
index
)
group
.
_checked
=
false
// Expand next group
if
(
index
+
1
<
checkListRepeater
.
count
)
{
group
=
checkListRepeater
.
itemAt
(
index
+
1
)
group
.
enabled
=
true
group
.
_checked
=
true
}
}
_passed
=
passed
}
//-- Pick a checklist model that matches the current airframe type (if any)
function
_updateModel
()
{
if
(
activeVehicle
)
{
if
(
activeVehicle
.
multiRotor
)
{
modelContainer
.
source
=
"
/checklists/MultiRotorChecklist.qml
"
}
else
if
(
activeVehicle
.
vtol
)
{
modelContainer
.
source
=
"
/checklists/VTOLChecklist.qml
"
}
else
if
(
activeVehicle
.
rover
)
{
modelContainer
.
source
=
"
/checklists/RoverChecklist.qml
"
}
else
if
(
activeVehicle
.
sub
)
{
modelContainer
.
source
=
"
/checklists/SubChecklist.qml
"
}
else
if
(
activeVehicle
.
fixedWing
)
{
modelContainer
.
source
=
"
/checklists/FixedWingChecklist.qml
"
}
else
{
modelContainer
.
source
=
"
/checklists/DefaultChecklist.qml
"
}
return
}
modelContainer
.
source
=
"
/checklists/DefaultChecklist.qml
"
}
Component.onCompleted
:
{
_updateModel
()
}
onVisibleChanged
:
{
if
(
activeVehicle
)
{
if
(
visible
)
{
_updateModel
()
}
else
{
if
(
modelContainer
.
item
.
model
.
isPassed
())
{
activeVehicle
.
checkListState
=
Vehicle
.
CheckListPassed
}
else
{
activeVehicle
.
checkListState
=
Vehicle
.
CheckListFailed
}
}
}
}
// We delay the updates when a group passes so the user can see all items green for a moment prior to hiding
Timer
{
id
:
delayedGroupPassed
interval
:
750
property
int
index
onTriggered
:
_handleGroupPassedChanged
(
index
,
true
/* passed */
)
}
Column
{
id
:
mainColumn
width
:
40
*
ScreenTools
.
defaultFontPixelWidth
spacing
:
0.8
*
ScreenTools
.
defaultFontPixelWidth
anchors.left
:
parent
.
left
anchors.top
:
parent
.
top
anchors.topMargin
:
0.6
*
ScreenTools
.
defaultFontPixelWidth
anchors.leftMargin
:
1.5
*
ScreenTools
.
defaultFontPixelWidth
function
groupPassedChanged
(
index
,
passed
)
{
if
(
passed
)
{
delayedGroupPassed
.
index
=
index
delayedGroupPassed
.
restart
()
}
else
{
_handleGroupPassedChanged
(
index
,
passed
)
}
}
// Header/title of checklist
Item
{
width
:
parent
.
width
height
:
1.75
*
ScreenTools
.
defaultFontPixelHeight
QGCLabel
{
text
:
qsTr
(
"
Pre-Flight Checklist %1
"
).
arg
(
_passed
?
qsTr
(
"
(passed)
"
)
:
""
)
anchors.left
:
parent
.
left
anchors.verticalCenter
:
parent
.
verticalCenter
font.pointSize
:
ScreenTools
.
mediumFontPointSize
}
QGCButton
{
width
:
1.2
*
ScreenTools
.
defaultFontPixelHeight
height
:
1.2
*
ScreenTools
.
defaultFontPixelHeight
anchors.right
:
parent
.
right
anchors.verticalCenter
:
parent
.
verticalCenter
tooltip
:
qsTr
(
"
Reset the checklist (e.g. after a vehicle reboot)
"
)
onClicked
:
checkListRepeater
.
model
.
reset
()
QGCColoredImage
{
source
:
"
/qmlimages/MapSyncBlack.svg
"
color
:
qgcPal
.
buttonText
anchors.fill
:
parent
}
}
}
// All check list items
Repeater
{
id
:
checkListRepeater
model
:
modelContainer
.
item
.
model
}
}
}
src/FlightDisplay/RoverChecklist.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
Item
{
property
var
model
:
listModel
PreFlightCheckModel
{
id
:
listModel
PreFlightCheckGroup
{
name
:
qsTr
(
"
Rover Initial Checks
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Hardware
"
)
manualText
:
qsTr
(
"
Battery mounted and secured?
"
)
}
PreFlightBatteryCheck
{
failurePercent
:
40
allowFailurePercentOverride
:
false
}
PreFlightSensorsHealthCheck
{
}
PreFlightGPSCheck
{
failureSatCount
:
9
allowOverrideSatCount
:
true
}
PreFlightRCCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Please arm the vehicle here
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission
"
)
manualText
:
qsTr
(
"
Please confirm mission is valid (waypoints valid, no terrain collision).
"
)
}
PreFlightSoundCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Last preparations before launch
"
)
// Check list item group 2 - Final checks before launch
PreFlightCheckButton
{
name
:
qsTr
(
"
Payload
"
)
manualText
:
qsTr
(
"
Configured and started? Payload lid closed?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Wind & weather
"
)
manualText
:
qsTr
(
"
OK for your platform?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission area
"
)
manualText
:
qsTr
(
"
Mission area and path free of obstacles/people?
"
)
}
}
}
}
src/FlightDisplay/SubChecklist.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
Item
{
property
var
model
:
listModel
PreFlightCheckModel
{
id
:
listModel
PreFlightCheckGroup
{
name
:
qsTr
(
"
Submarine Initial checks
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Hardware
"
)
manualText
:
qsTr
(
"
All seals in place?
"
)
}
PreFlightBatteryCheck
{
failurePercent
:
40
allowFailurePercentOverride
:
false
}
PreFlightSensorsHealthCheck
{
}
PreFlightGPSCheck
{
failureSatCount
:
9
allowOverrideSatCount
:
true
}
PreFlightRCCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Please arm the vehicle here
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Actuators
"
)
manualText
:
qsTr
(
"
Move all control surfaces. Did they work properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Motors
"
)
manualText
:
qsTr
(
"
Propellers free? Then throttle up gently. Working properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission
"
)
manualText
:
qsTr
(
"
Please confirm mission is valid (waypoints valid, no terrain collision).
"
)
}
PreFlightSoundCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Last preparations before launch
"
)
// Check list item group 2 - Final checks before launch
PreFlightCheckButton
{
name
:
qsTr
(
"
Payload
"
)
manualText
:
qsTr
(
"
Configured and started? Payload lid closed?
"
)
}
}
}
}
src/FlightDisplay/VTOLChecklist.qml
0 → 100644
View file @
e666acf9
/****************************************************************************
*
* (c) 2009-2016 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
*
* QGroundControl is licensed according to the terms in the file
* COPYING.md in the root of the source code directory.
*
****************************************************************************/
import
QtQuick
2.11
import
QtQuick
.
Controls
2.4
import
QtQml
.
Models
2.1
import
QGroundControl
1.0
import
QGroundControl
.
ScreenTools
1.0
import
QGroundControl
.
Controls
1.0
import
QGroundControl
.
FlightDisplay
1.0
import
QGroundControl
.
Vehicle
1.0
import
CustomQuickInterface
1.0
Item
{
property
var
model
:
listModel
PreFlightCheckModel
{
id
:
listModel
PreFlightCheckGroup
{
name
:
qsTr
(
"
VTOL Initial Checks
"
)
// Standard check list items (group 0) - Available from the start
Rectangle
{
width
:
ScreenTools
.
defaultFontPixelWidth
*
40
height
:
testFlight
.
height
+
ScreenTools
.
defaultFontPixelHeight
color
:
qgcPal
.
button
property
bool
passed
:
true
function
reset
()
{
if
(
activeVehicle
)
{
CustomQuickInterface
.
testFlight
=
false
activeVehicle
.
checkListState
=
Vehicle
.
CheckListNotSetup
}
}
QGCCheckBox
{
id
:
testFlight
text
:
"
Test Flight
"
enabled
:
!
CustomQuickInterface
.
debugBuild
checked
:
CustomQuickInterface
.
testFlight
anchors.centerIn
:
parent
onClicked
:
CustomQuickInterface
.
testFlight
=
checked
Component.onCompleted
:
{
CustomQuickInterface
.
testFlight
=
false
}
}
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Hardware
"
)
manualText
:
qsTr
(
"
Props mounted? Wings secured? Tail secured?
"
)
}
PreFlightBatteryCheck
{
failurePercent
:
40
allowFailurePercentOverride
:
false
}
PreFlightSensorsHealthCheck
{
}
PreFlightGPSCheck
{
failureSatCount
:
9
allowOverrideSatCount
:
true
}
PreFlightRCCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Please arm the vehicle here
"
)
PreFlightCheckButton
{
name
:
qsTr
(
"
Actuators
"
)
manualText
:
qsTr
(
"
Move all control surfaces. Did they work properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Motors
"
)
manualText
:
qsTr
(
"
Propellers free? Then throttle up gently. Working properly?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Mission
"
)
manualText
:
qsTr
(
"
Please confirm mission is valid (waypoints valid, no terrain collision).
"
)
}
PreFlightSoundCheck
{
}
}
PreFlightCheckGroup
{
name
:
qsTr
(
"
Last preparations before launch
"
)
// Check list item group 2 - Final checks before launch
PreFlightCheckButton
{
name
:
qsTr
(
"
Payload
"
)
manualText
:
qsTr
(
"
Configured and started? Payload lid closed?
"
)
}
PreFlightCheckButton
{
name
:
"
Wind & weather
"
manualText
:
qsTr
(
"
OK for your platform? Lauching into the wind?
"
)
}
PreFlightCheckButton
{
name
:
qsTr
(
"
Flight area
"
)
manualText
:
qsTr
(
"
Launch area and path free of obstacles/people?
"
)
}
}
}
}
src/api/QGCOptions.h
View file @
e666acf9
...
...
@@ -90,8 +90,8 @@ public:
/// Allows access to the full fly view window
virtual
QUrl
flyViewOverlay
()
const
{
return
QUrl
();
}
/// Provides an optional preflight checklist
virtual
QUrl
preFlightChecklistUrl
()
const
{
return
QUrl
(
);
}
/// Provides an optional
, custom
preflight checklist
virtual
QUrl
preFlightChecklistUrl
()
const
{
return
QUrl
::
fromUserInput
(
"qrc:/qml/PreFlightCheckList.qml"
);
}
/// Allows replacing the Main toolbar
virtual
QUrl
mainToolbarUrl
()
const
;
...
...
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