6import QGroundControl.Controls
7import QGroundControl.FactControls
10 property real _availableHeight: availableHeight
11 property real _availableWidth: availableWidth
15 availableWidth: _availableWidth
16 availableHeight: _availableHeight - pidTuning.y
18 property var roll: QtObject {
19 property string name: qsTr("Roll")
21 { name: "Response", value: globals.activeVehicle.roll.value },
22 { name: "Setpoint", value: globals.activeVehicle.setpoint.roll.value }
24 property var params: ListModel {
26 title: qsTr("Time constant (FW_R_TC)")
27 description: qsTr("The latency between a roll step input and the achieved setpoint (inverse to a P gain)")
35 property var pitch: QtObject {
36 property string name: qsTr("Pitch")
38 { name: "Response", value: globals.activeVehicle.pitch.value },
39 { name: "Setpoint", value: globals.activeVehicle.setpoint.pitch.value }
41 property var params: ListModel {
43 title: qsTr("Time Constant (FW_P_TC)")
44 description: qsTr("The latency between a pitch step input and the achieved setpoint (inverse to a P gain)")
53 tuningMode: Vehicle.ModeRateAndAttitude
56 showAutoModeChange: true