Browse Source

PX4FlightBehaviorCopter: add NAV_ACC_RAD to configure mission turning radius

QGC4.4
Beat Küng 4 years ago committed by Lorenz Meier
parent
commit
d231fb3d26
  1. 16
      src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml

16
src/AutoPilotPlugins/PX4/PX4FlightBehaviorCopter.qml

@ -150,6 +150,22 @@ SetupPage { @@ -150,6 +150,22 @@ SetupPage {
}
}
}
FactSliderPanel {
width: availableWidth
sliderModel: ListModel {
ListElement {
title: qsTr("Mission Turning Radius")
description: qsTr("Increasing this leads to rounder turns in missions (corner cutting). Use the minimum value for accurate corner tracking.")
param: "NAV_ACC_RAD"
min: 2
max: 16
step: 0.5
}
}
}
} // Column
} // Component - pageComponent
} // SetupPage

Loading…
Cancel
Save