APMSafetyComponentCopter.qml 26.6 KB
Newer Older
1 2 3 4 5 6 7 8
/****************************************************************************
 *
 *   (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.
 *
 ****************************************************************************/
Don Gagne's avatar
Don Gagne committed
9 10


11 12
import QtQuick              2.3
import QtQuick.Controls     1.2
Don Gagne's avatar
Don Gagne committed
13
import QtGraphicalEffects   1.0
14
import QtQuick.Layouts      1.2
Don Gagne's avatar
Don Gagne committed
15 16 17 18 19 20 21

import QGroundControl.FactSystem    1.0
import QGroundControl.FactControls  1.0
import QGroundControl.Palette       1.0
import QGroundControl.Controls      1.0
import QGroundControl.ScreenTools   1.0

22 23 24
SetupPage {
    id:             safetyPage
    pageComponent:  safetyPageComponent
Don Gagne's avatar
Don Gagne committed
25

26 27
    Component {
        id: safetyPageComponent
Don Gagne's avatar
Don Gagne committed
28

29 30 31 32
        Flow {
            id:         flowLayout
            width:      availableWidth
            spacing:    _margins
Don Gagne's avatar
Don Gagne committed
33

34
            FactPanelController { id: controller; factPanel: safetyPage.viewPanel }
35

36
            QGCPalette { id: ggcPal; colorGroupEnabled: true }
37

38
            property Fact _failsafeGCSEnable:               controller.getParameterFact(-1, "FS_GCS_ENABLE")
39 40 41
            property Fact _failsafeBattLowAct:              controller.getParameterFact(-1, "r.BATT_FS_LOW_ACT", false /* reportMissing */)
            property Fact _failsafeBattMah:                 controller.getParameterFact(-1, "r.BATT_LOW_MAH", false /* reportMissing */)
            property Fact _failsafeBattVoltage:             controller.getParameterFact(-1, "r.BATT_LOW_VOLT", false /* reportMissing */)
42 43 44
            property Fact _failsafeThrEnable:               controller.getParameterFact(-1, "FS_THR_ENABLE")
            property Fact _failsafeThrValue:                controller.getParameterFact(-1, "FS_THR_VALUE")

45 46
            property Fact _batt1Monitor:                    controller.getParameterFact(-1, "BATT_MONITOR")
            property Fact _batt2Monitor:                    controller.getParameterFact(-1, "BATT2_MONITOR", false /* reportMissing */)
47
            property bool _batt2MonitorAvailable:           controller.parameterExists(-1, "BATT2_MONITOR")
48
            property bool _batt1MonitorEnabled:             _batt2MonitorAvailable ? _batt2Monitor.rawValue !== 0 : false
49
            property bool _batt2MonitorEnabled:             _batt2MonitorAvailable ? _batt2Monitor.rawValue !== 0 : false
50 51
            property bool _batt1ParamsAvailable:            controller.parameterExists(-1, "BATT_CAPACITY")
            property bool _batt2ParamsAvailable:            controller.parameterExists(-1, "BATT2_CAPACITY")
52 53 54 55 56 57

            property Fact _failsafeBattCritAct:             controller.getParameterFact(-1, "BATT_FS_CRT_ACT", false /* reportMissing */)
            property Fact _failsafeBatt2LowAct:             controller.getParameterFact(-1, "BATT2_FS_LOW_ACT", false /* reportMissing */)
            property Fact _failsafeBatt2CritAct:            controller.getParameterFact(-1, "BATT2_FS_CRT_ACT", false /* reportMissing */)
            property Fact _failsafeBatt2Mah:                controller.getParameterFact(-1, "BATT2_LOW_MAH", false /* reportMissing */)
            property Fact _failsafeBatt2Voltage:            controller.getParameterFact(-1, "BATT2_LOW_VOLT", false /* reportMissing */)
Don Gagne's avatar
Don Gagne committed
58

59 60 61 62 63 64
            property Fact _fenceAction: controller.getParameterFact(-1, "FENCE_ACTION")
            property Fact _fenceAltMax: controller.getParameterFact(-1, "FENCE_ALT_MAX")
            property Fact _fenceEnable: controller.getParameterFact(-1, "FENCE_ENABLE")
            property Fact _fenceMargin: controller.getParameterFact(-1, "FENCE_MARGIN")
            property Fact _fenceRadius: controller.getParameterFact(-1, "FENCE_RADIUS")
            property Fact _fenceType:   controller.getParameterFact(-1, "FENCE_TYPE")
Don Gagne's avatar
Don Gagne committed
65

66 67 68 69
            property Fact _landSpeedFact:   controller.getParameterFact(-1, "LAND_SPEED")
            property Fact _rtlAltFact:      controller.getParameterFact(-1, "RTL_ALT")
            property Fact _rtlLoitTimeFact: controller.getParameterFact(-1, "RTL_LOIT_TIME")
            property Fact _rtlAltFinalFact: controller.getParameterFact(-1, "RTL_ALT_FINAL")
Don Gagne's avatar
Don Gagne committed
70

71
            property Fact _armingCheck: controller.getParameterFact(-1, "ARMING_CHECK")
Don Gagne's avatar
Don Gagne committed
72

73 74
            property real _margins:     ScreenTools.defaultFontPixelHeight
            property bool _showIcon:    !ScreenTools.isTinyScreen
Don Gagne's avatar
Don Gagne committed
75

76 77 78
            ExclusiveGroup { id: fenceActionRadioGroup }
            ExclusiveGroup { id: landLoiterRadioGroup }
            ExclusiveGroup { id: returnAltRadioGroup }
Don Gagne's avatar
Don Gagne committed
79

80 81
            Column {
                spacing: _margins / 2
82
                visible: _batt1MonitorEnabled && _batt1ParamsAvailable
Don Gagne's avatar
Don Gagne committed
83

84
                QGCLabel {
85
                    text:       qsTr("Battery1 Failsafe Triggers")
86 87 88 89
                    font.family: ScreenTools.demiboldFontFamily
                }

                Rectangle {
90 91
                    width:  batteryFailsafeColumn.x + batteryFailsafeColumn.width + _margins
                    height: batteryFailsafeColumn.y + batteryFailsafeColumn.height + _margins
92
                    color:  ggcPal.windowShade
Don Gagne's avatar
Don Gagne committed
93

94 95
                    Column {
                        id:                 batteryFailsafeColumn
96 97 98
                        anchors.margins:    _margins
                        anchors.top:        parent.top
                        anchors.left:       parent.left
99 100 101 102 103 104 105
                        spacing:            _margins

                        GridLayout {
                            id:             gridLayout
                            columnSpacing:  _margins
                            rowSpacing:     _margins
                            columns:        2
DonLakeFlyer's avatar
DonLakeFlyer committed
106
                            QGCLabel { text: qsTr("Battery low action:") }
107 108 109 110 111 112 113
                            FactComboBox {
                                fact:               _failsafeBattLowAct
                                indexModel:         false
                                Layout.fillWidth:   true
                            }

                            QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
114
                                text:       qsTr("Battery critical action:")
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
                                visible:    _failsafeBattCritActAvailable
                            }
                            FactComboBox {
                                fact:               _failsafeBattCritAct
                                visible:            _failsafeBattCritActAvailable
                                indexModel:         false
                                Layout.fillWidth:   true
                            }

                            QGCCheckBox {
                                text:      qsTr("Voltage threshold:")
                                checked:   _failsafeBattVoltage.value != 0
                                onClicked: _failsafeBattVoltage.value = checked ? 10.5 : 0
                            }
                            FactTextField {
                                fact:               _failsafeBattVoltage
                                showUnits:          true
                                Layout.fillWidth:   true
                            }

                            QGCCheckBox {
                                text:       qsTr("MAH threshold:")
                                checked:    _failsafeBattMah.value != 0
                                onClicked:  _failsafeBattMah.value = checked ? 600 : 0
                            }
                            FactTextField {
                                fact:               _failsafeBattMah
                                showUnits:          true
                                Layout.fillWidth:   true
                            }
                        } // GridLayout
                    } // Column
                } // Rectangle
            } // Column - Battery Failsafe Settings

            Column {
                spacing: _margins / 2
152
                visible:    _batt2MonitorEnabled && _batt2ParamsAvailable
153 154 155 156 157 158 159 160 161 162 163 164 165 166

                QGCLabel {
                    text:       qsTr("Battery2 Failsafe Triggers")
                    font.family: ScreenTools.demiboldFontFamily
                }

                Rectangle {
                    id:     failsafeSettings
                    width:  battery2FailsafeColumn.x + battery2FailsafeColumn.width + _margins
                    height: battery2FailsafeColumn.y + battery2FailsafeColumn.height + _margins
                    color:  ggcPal.windowShade

                    Column {
                        id:                 battery2FailsafeColumn
167
                        anchors.margins:    _margins
168
                        anchors.top:        parent.top
169
                        anchors.left:       parent.left
170 171 172 173 174 175 176 177
                        spacing:            _margins

                        GridLayout {
                            columnSpacing:  _margins
                            rowSpacing:     _margins
                            columns:        2
                            visible:        _batt2MonitorEnabled && _failsafeBatt2LowActAvailable

DonLakeFlyer's avatar
DonLakeFlyer committed
178
                            QGCLabel { text: qsTr("Battery low action:") }
179 180 181 182 183 184 185
                            FactComboBox {
                                fact:               _failsafeBatt2LowAct
                                indexModel:         false
                                Layout.fillWidth:   true
                            }

                            QGCLabel {
DonLakeFlyer's avatar
DonLakeFlyer committed
186
                                text:       qsTr("Battery critical action:")
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
                            }
                            FactComboBox {
                                fact:               _failsafeBatt2CritAct
                                indexModel:         false
                                Layout.fillWidth:   true
                            }

                            QGCCheckBox {
                                text:      qsTr("Voltage threshold:")
                                checked:   _failsafeBatt2Voltage.value != 0
                                onClicked: _failsafeBatt2Voltage.value = checked ? 10.5 : 0
                            }
                            FactTextField {
                                fact:               _failsafeBatt2Voltage
                                showUnits:          true
                                Layout.fillWidth:   true
                            }

                            QGCCheckBox {
                                text:       qsTr("MAH threshold:")
                                checked:    _failsafeBatt2Mah.value != 0
                                onClicked:  _failsafeBatt2Mah.value = checked ? 600 : 0
                            }
                            FactTextField {
                                fact:               _failsafeBatt2Mah
                                showUnits:          true
                                Layout.fillWidth:   true
                            }
                        } // GridLayout
                    } // Column
                } // Rectangle
            } // Column - Battery2 Failsafe Settings

            Column {
                spacing: _margins / 2

                QGCLabel {
                    text:       qsTr("General Failsafe Triggers")
                    font.family: ScreenTools.demiboldFontFamily
                }

                Rectangle {
                    width:  generalFailsafeColumn.x + generalFailsafeColumn.width + _margins
                    height: generalFailsafeColumn.y + generalFailsafeColumn.height + _margins
                    color:  ggcPal.windowShade

                    Column {
                        id:                 generalFailsafeColumn
235
                        anchors.margins:    _margins
236
                        anchors.top:        parent.top
237
                        anchors.left:       parent.left
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
                        spacing:            _margins

                        GridLayout {
                            columnSpacing:  _margins
                            rowSpacing:     _margins
                            columns:        2

                            QGCLabel { text: qsTr("Ground Station failsafe:") }
                            FactComboBox {
                                fact:               _failsafeGCSEnable
                                indexModel:         false
                                Layout.fillWidth:   true
                            }

                            QGCLabel { text: qsTr("Throttle failsafe:") }
                            QGCComboBox {
                                model:              [qsTr("Disabled"), qsTr("Always RTL"),
                                    qsTr("Continue with Mission in Auto Mode"), qsTr("Always Land")]
                                currentIndex:       _failsafeThrEnable.value
                                Layout.fillWidth:   true

                                onActivated: _failsafeThrEnable.value = index
                            }

                            QGCLabel { text: qsTr("PWM threshold:") }
                            FactTextField {
                                fact:               _failsafeThrValue
                                showUnits:          true
                                Layout.fillWidth:   true
                            }
                        } // GridLayout
                    } // Column
270
                } // Rectangle - Failsafe Settings
271
            } // Column - General Failsafe Settings
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299

            Column {
                spacing: _margins / 2

                QGCLabel {
                    id:             geoFenceLabel
                    text:           qsTr("GeoFence")
                    font.family:    ScreenTools.demiboldFontFamily
                }

                Rectangle {
                    id:     geoFenceSettings
                    width:  fenceAltMaxField.x + fenceAltMaxField.width + _margins
                    height: fenceAltMaxField.y + fenceAltMaxField.height + _margins
                    color:  ggcPal.windowShade

                    QGCCheckBox {
                        id:                 circleGeo
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        text:               qsTr("Circle GeoFence enabled")
                        checked:            _fenceEnable.value != 0 && _fenceType.value & 2

                        onClicked: {
                            if (checked) {
                                if (_fenceEnable.value == 1) {
                                    _fenceType.value |= 2
Don Gagne's avatar
Don Gagne committed
300
                                } else {
301 302
                                    _fenceEnable.value = 1
                                    _fenceType.value = 2
Don Gagne's avatar
Don Gagne committed
303
                                }
304 305 306 307 308
                            } else if (altitudeGeo.checked) {
                                _fenceType.value &= ~2
                            } else {
                                _fenceEnable.value = 0
                                _fenceType.value = 0
Don Gagne's avatar
Don Gagne committed
309 310
                            }
                        }
311
                    }
Don Gagne's avatar
Don Gagne committed
312

313 314 315 316 317 318 319 320 321 322 323 324
                    QGCCheckBox {
                        id:                 altitudeGeo
                        anchors.topMargin:  _margins / 2
                        anchors.left:       circleGeo.left
                        anchors.top:        circleGeo.bottom
                        text:               qsTr("Altitude GeoFence enabled")
                        checked:            _fenceEnable.value != 0 && _fenceType.value & 1

                        onClicked: {
                            if (checked) {
                                if (_fenceEnable.value == 1) {
                                    _fenceType.value |= 1
Don Gagne's avatar
Don Gagne committed
325
                                } else {
326 327
                                    _fenceEnable.value = 1
                                    _fenceType.value = 1
Don Gagne's avatar
Don Gagne committed
328
                                }
329 330 331 332 333
                            } else if (circleGeo.checked) {
                                _fenceType.value &= ~1
                            } else {
                                _fenceEnable.value = 0
                                _fenceType.value = 0
334 335
                            }
                        }
336
                    }
Don Gagne's avatar
Don Gagne committed
337

338 339 340 341 342 343 344 345
                    QGCRadioButton {
                        id:                 geoReportRadio
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.top:        altitudeGeo.bottom
                        text:               qsTr("Report only")
                        exclusiveGroup:     fenceActionRadioGroup
                        checked:            _fenceAction.value == 0
Don Gagne's avatar
Don Gagne committed
346

347 348
                        onClicked: _fenceAction.value = 0
                    }
Don Gagne's avatar
Don Gagne committed
349

350 351 352 353 354 355 356 357
                    QGCRadioButton {
                        id:                 geoRTLRadio
                        anchors.topMargin:  _margins / 2
                        anchors.left:       circleGeo.left
                        anchors.top:        geoReportRadio.bottom
                        text:               qsTr("RTL or Land")
                        exclusiveGroup:     fenceActionRadioGroup
                        checked:            _fenceAction.value == 1
Don Gagne's avatar
Don Gagne committed
358

359 360
                        onClicked: _fenceAction.value = 1
                    }
Don Gagne's avatar
Don Gagne committed
361 362

                    QGCLabel {
363 364 365 366
                        id:                 fenceRadiusLabel
                        anchors.left:       circleGeo.left
                        anchors.baseline:   fenceRadiusField.baseline
                        text:               qsTr("Max radius:")
367
                    }
Don Gagne's avatar
Don Gagne committed
368

369 370 371 372 373 374 375 376
                    FactTextField {
                        id:                 fenceRadiusField
                        anchors.topMargin:  _margins
                        anchors.left:       fenceAltMaxField.left
                        anchors.top:        geoRTLRadio.bottom
                        fact:               _fenceRadius
                        showUnits:          true
                    }
Don Gagne's avatar
Don Gagne committed
377

378 379 380 381 382 383
                    QGCLabel {
                        id:                 fenceAltMaxLabel
                        anchors.left:       circleGeo.left
                        anchors.baseline:   fenceAltMaxField.baseline
                        text:               qsTr("Max altitude:")
                    }
Don Gagne's avatar
Don Gagne committed
384

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
                    FactTextField {
                        id:                 fenceAltMaxField
                        anchors.topMargin:  _margins / 2
                        anchors.leftMargin: _margins
                        anchors.left:       fenceAltMaxLabel.right
                        anchors.top:        fenceRadiusField.bottom
                        fact:               _fenceAltMax
                        showUnits:          true
                    }
                } // Rectangle - GeoFence Settings
            } // Column - GeoFence Settings

            Column {
                spacing: _margins / 2

                QGCLabel {
                    id:             rtlLabel
                    text:           qsTr("Return to Launch")
                    font.family:    ScreenTools.demiboldFontFamily
                }

                Rectangle {
                    id:     rtlSettings
                    width:  rltAltFinalField.x + rltAltFinalField.width + _margins
                    height: rltAltFinalField.y + rltAltFinalField.height + _margins
                    color:  ggcPal.windowShade

                    Image {
                        id:                 icon
                        anchors.margins:    _margins
                        anchors.left:       parent.left
                        anchors.top:        parent.top
                        height:             ScreenTools.defaultFontPixelWidth * 20
                        width:              ScreenTools.defaultFontPixelWidth * 20
                        sourceSize.width:   width
                        mipmap:             true
                        fillMode:           Image.PreserveAspectFit
                        visible:            false
                        source:             "/qmlimages/ReturnToHomeAltitude.svg"
                    }
Don Gagne's avatar
Don Gagne committed
425

426 427 428 429 430 431
                    ColorOverlay {
                        anchors.fill:   icon
                        source:         icon
                        color:          ggcPal.text
                        visible:        _showIcon
                    }
Don Gagne's avatar
Don Gagne committed
432

433 434 435 436 437 438 439 440
                    QGCRadioButton {
                        id:                 returnAtCurrentRadio
                        anchors.margins:    _margins
                        anchors.left:       _showIcon ? icon.right : parent.left
                        anchors.top:        parent.top
                        text:               qsTr("Return at current altitude")
                        checked:            _rtlAltFact.value == 0
                        exclusiveGroup:     returnAltRadioGroup
Don Gagne's avatar
Don Gagne committed
441

442 443
                        onClicked: _rtlAltFact.value = 0
                    }
Don Gagne's avatar
Don Gagne committed
444

445 446 447 448 449 450 451 452
                    QGCRadioButton {
                        id:                 returnAltRadio
                        anchors.topMargin:  _margins
                        anchors.left:       returnAtCurrentRadio.left
                        anchors.top:        returnAtCurrentRadio.bottom
                        text:               qsTr("Return at specified altitude:")
                        exclusiveGroup:     returnAltRadioGroup
                        checked:            _rtlAltFact.value != 0
Don Gagne's avatar
Don Gagne committed
453

454 455
                        onClicked: _rtlAltFact.value = 1500
                    }
Don Gagne's avatar
Don Gagne committed
456

457 458 459 460 461 462 463 464 465
                    FactTextField {
                        id:                 rltAltField
                        anchors.leftMargin: _margins
                        anchors.left:       returnAltRadio.right
                        anchors.baseline:   returnAltRadio.baseline
                        fact:               _rtlAltFact
                        showUnits:          true
                        enabled:            returnAltRadio.checked
                    }
Don Gagne's avatar
Don Gagne committed
466

467 468 469 470 471 472
                    QGCCheckBox {
                        id:                 homeLoiterCheckbox
                        anchors.left:       returnAtCurrentRadio.left
                        anchors.baseline:   landDelayField.baseline
                        checked:            _rtlLoitTimeFact.value > 0
                        text:               qsTr("Loiter above Home for:")
Don Gagne's avatar
Don Gagne committed
473

474 475
                        onClicked: _rtlLoitTimeFact.value = (checked ? 60 : 0)
                    }
Don Gagne's avatar
Don Gagne committed
476

477 478 479 480 481 482 483 484 485
                    FactTextField {
                        id:                 landDelayField
                        anchors.topMargin:  _margins * 1.5
                        anchors.left:       rltAltField.left
                        anchors.top:        rltAltField.bottom
                        fact:               _rtlLoitTimeFact
                        showUnits:          true
                        enabled:            homeLoiterCheckbox.checked === true
                    }
Don Gagne's avatar
Don Gagne committed
486

487 488 489 490 491 492 493
                    QGCRadioButton {
                        id:                 landRadio
                        anchors.left:       returnAtCurrentRadio.left
                        anchors.baseline:   landSpeedField.baseline
                        text:               qsTr("Land with descent speed:")
                        checked:            _rtlAltFinalFact.value == 0
                        exclusiveGroup:     landLoiterRadioGroup
Don Gagne's avatar
Don Gagne committed
494

495 496
                        onClicked: _rtlAltFinalFact.value = 0
                    }
Don Gagne's avatar
Don Gagne committed
497

498 499 500 501 502 503 504 505 506
                    FactTextField {
                        id:                 landSpeedField
                        anchors.topMargin:  _margins * 1.5
                        anchors.top:        landDelayField.bottom
                        anchors.left:       rltAltField.left
                        fact:               _landSpeedFact
                        showUnits:          true
                        enabled:            landRadio.checked
                    }
Don Gagne's avatar
Don Gagne committed
507

508 509 510 511 512 513
                    QGCRadioButton {
                        id:                 finalLoiterRadio
                        anchors.left:       returnAtCurrentRadio.left
                        anchors.baseline:   rltAltFinalField.baseline
                        text:               qsTr("Final loiter altitude:")
                        exclusiveGroup:     landLoiterRadioGroup
Don Gagne's avatar
Don Gagne committed
514

515
                        onClicked: _rtlAltFinalFact.value = _rtlAltFact.value
Don Gagne's avatar
Don Gagne committed
516 517
                    }

518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
                    FactTextField {
                        id:                 rltAltFinalField
                        anchors.topMargin:  _margins / 2
                        anchors.left:       rltAltField.left
                        anchors.top:        landSpeedField.bottom
                        fact:               _rtlAltFinalFact
                        enabled:            finalLoiterRadio.checked
                        showUnits:          true
                    }
                } // Rectangle - RTL Settings
            } // Column - RTL Settings

            Column {
                spacing: _margins / 2

                QGCLabel {
                    text:           qsTr("Arming Checks")
                    font.family:    ScreenTools.demiboldFontFamily
                }

                Rectangle {
                    width:  flowLayout.width
                    height: armingCheckInnerColumn.height + (_margins * 2)
                    color:  ggcPal.windowShade

                    Column {
                        id:                 armingCheckInnerColumn
                        anchors.margins:    _margins
                        anchors.top:        parent.top
                        anchors.left:       parent.left
                        anchors.right:      parent.right
                        spacing: _margins

                        FactBitmask {
                            id:                 armingCheckBitmask
Don Gagne's avatar
Don Gagne committed
553 554
                            anchors.left:       parent.left
                            anchors.right:      parent.right
555 556 557
                            firstEntryIsAll:    true
                            fact:               _armingCheck
                        }
558

559 560 561 562 563 564 565 566
                        QGCLabel {
                            id:             armingCheckWarning
                            anchors.left:   parent.left
                            anchors.right:  parent.right
                            wrapMode:       Text.WordWrap
                            color:          qgcPal.warningText
                            text:            qsTr("Warning: Turning off arming checks can lead to loss of Vehicle control.")
                            visible:        _armingCheck.value != 1
Don Gagne's avatar
Don Gagne committed
567
                        }
568 569 570 571 572 573
                    }
                } // Rectangle - Arming checks
            } // Column - Arming Checks
        } // Flow
    } // Component - safetyPageComponent
} // SetupView