Browse Source

Merge pull request #7394 from DonLakeFlyer/PIDTuning

PX4: Pid tuning - fix missing param MC_YAW_FF
QGC4.4
Don Gagne 6 years ago committed by GitHub
parent
commit
9d62c93d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      ChangeLog.md
  2. 1
      src/AutoPilotPlugins/PX4/PX4TuningComponentCopter.qml

1
ChangeLog.md

@ -9,6 +9,7 @@ Note: This file only contains high level features or important fixes. @@ -9,6 +9,7 @@ Note: This file only contains high level features or important fixes.
* Major rewrite and bug fix pass through Structure Scan. Previous version had such bad problems that it can no longer be supported. Plans with Structure Scan will need to be recreated. New QGC will not load old Structure Scan plans.
### 3.5.3 - Not yet released
* PX4: Fix missing ```MC_YAW_FF``` parameter in PID Tuning
* ArduPilot: Fix parameter file save generating bad characters from git hash
### 3.5.2 - Stable

1
src/AutoPilotPlugins/PX4/PX4TuningComponentCopter.qml

@ -112,7 +112,6 @@ SetupPage { @@ -112,7 +112,6 @@ SetupPage {
controller.getParameterFact(-1, "MC_YAWRATE_P"),
controller.getParameterFact(-1, "MC_YAWRATE_I"),
controller.getParameterFact(-1, "MC_YAWRATE_D"),
controller.getParameterFact(-1, "MC_YAW_FF"),
controller.getParameterFact(-1, "MC_YAWRATE_FF") ] ]
}
} // Component - Advanced Page

Loading…
Cancel
Save