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
621e754b
Commit
621e754b
authored
Jan 13, 2016
by
Don Gagne
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2592 from DonLakeFlyer/Falisafe
Add GCS Failsafe option
parents
5d41ea66
fefc3fc4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
7 deletions
+26
-7
APMSafetyComponentCopter.qml
src/AutoPilotPlugins/APM/APMSafetyComponentCopter.qml
+26
-7
No files found.
src/AutoPilotPlugins/APM/APMSafetyComponentCopter.qml
View file @
621e754b
...
...
@@ -40,6 +40,7 @@ QGCView {
QGCPalette
{
id
:
palette
;
colorGroupEnabled
:
enabled
}
property
Fact
_failsafeGCSEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_GCS_ENABLE
"
)
property
Fact
_failsafeBattEnable
:
controller
.
getParameterFact
(
-
1
,
"
FS_BATT_ENABLE
"
)
property
Fact
_failsafeBattMah
:
controller
.
getParameterFact
(
-
1
,
"
FS_BATT_MAH
"
)
property
Fact
_failsafeBattVoltage
:
controller
.
getParameterFact
(
-
1
,
"
FS_BATT_VOLTAGE
"
)
...
...
@@ -92,6 +93,25 @@ QGCView {
height
:
mahField
.
y
+
mahField
.
height
+
_margins
color
:
palette
.
windowShade
QGCLabel
{
id
:
gcsEnableLabel
anchors.margins
:
_margins
anchors.left
:
parent
.
left
anchors.baseline
:
gcsEnableCombo
.
baseline
text
:
"
Ground Station failsafe:
"
}
FactComboBox
{
id
:
gcsEnableCombo
anchors.topMargin
:
_margins
anchors.leftMargin
:
_margins
anchors.left
:
gcsEnableLabel
.
right
anchors.top
:
parent
.
top
width
:
voltageField
.
width
fact
:
_failsafeGCSEnable
indexModel
:
false
}
QGCLabel
{
id
:
throttleEnableLabel
anchors.margins
:
_margins
...
...
@@ -103,8 +123,8 @@ QGCView {
QGCComboBox
{
id
:
throttleEnableCombo
anchors.topMargin
:
_margins
anchors.left
:
voltageField
.
left
anchors.top
:
parent
.
top
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
gcsEnableCombo
.
bottom
width
:
voltageField
.
width
model
:
[
"
Disabled
"
,
"
Always RTL
"
,
"
Continue with Mission in Auto Mode
"
,
"
Always Land
"
]
currentIndex
:
_failsafeThrEnable
.
value
...
...
@@ -123,7 +143,7 @@ QGCView {
FactTextField
{
id
:
throttlePWMField
anchors.topMargin
:
_margins
/
2
anchors.left
:
voltageField
.
left
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
throttleEnableCombo
.
bottom
fact
:
_failsafeThrValue
showUnits
:
true
...
...
@@ -140,7 +160,7 @@ QGCView {
QGCComboBox
{
id
:
batteryEnableCombo
anchors.topMargin
:
_margins
anchors.left
:
voltageField
.
left
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
throttlePWMField
.
bottom
width
:
voltageField
.
width
model
:
[
"
Disabled
"
,
"
Land
"
,
"
Return to Launch
"
]
...
...
@@ -163,8 +183,7 @@ QGCView {
FactTextField
{
id
:
voltageField
anchors.topMargin
:
_margins
/
2
anchors.leftMargin
:
_margins
anchors.left
:
voltageLabel
.
right
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
batteryEnableCombo
.
bottom
fact
:
_failsafeBattVoltage
showUnits
:
true
...
...
@@ -184,7 +203,7 @@ QGCView {
FactTextField
{
id
:
mahField
anchors.topMargin
:
_margins
/
2
anchors.left
:
voltageField
.
left
anchors.left
:
gcsEnableCombo
.
left
anchors.top
:
voltageField
.
bottom
fact
:
_failsafeBattMah
showUnits
:
true
...
...
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