Commit 3d66fe06 authored by Don Gagne's avatar Don Gagne

Add arming checks

parent dc3e21f8
......@@ -26,6 +26,8 @@ FactPanel {
property Fact _rtlAltFinalFact: controller.getParameterFact(-1, "RTL_ALT_FINAL")
property Fact _landSpeedFact: controller.getParameterFact(-1, "LAND_SPEED")
property Fact _armingCheck: controller.getParameterFact(-1, "ARMING_CHECK")
property string _failsafeBattEnableText
property string _failsafeThrEnableText
......@@ -85,6 +87,11 @@ FactPanel {
anchors.fill: parent
anchors.margins: 8
VehicleSummaryRow {
labelText: "Arming Checks:"
valueText: _armingCheck.value & 1 ? "Enabled" : "Some disabled"
}
VehicleSummaryRow {
labelText: "Throttle failsafe:"
valueText: _failsafeThrEnableText
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment