diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index f96ccce4..c81630ac 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -1065,13 +1065,13 @@
"receiverRcInterpolationInterval": {
"message": "RC Interpolation Interval [ms]"
},
- "pidTuningPtermSetpoint": {
+ "pidTuningDtermSetpointTransition": {
"message": "D Setpoint transition"
},
"pidTuningDtermSetpoint": {
"message": "D Setpoint Weight"
},
- "pidTuningPtermSetpointHelp": {
+ "pidTuningDtermSetpointTransitionHelp": {
"message": "With this parameter, D Setpoint Weight can be reduced near the center of the sticks, which results in smoother end of flips and rolls.
The value represents a point of stick deflection: 0 - stick centered, 1 - full deflection. When the stick is above that point, Setpoint Weight is kept constant at its configured value. When the stick is positioned below that point, Setpoint Weight is reduced proportionally, reaching 0 at the stick center position.
Value of 1 gives maximum smoothing effect, while value of 0 keeps the Setpoint Weight fixed at its configured value over the whole stick range."
},
"pidTuningDtermSetpointHelp": {
diff --git a/js/fc.js b/js/fc.js
index c9f73a67..7e47e557 100644
--- a/js/fc.js
+++ b/js/fc.js
@@ -348,7 +348,7 @@ var FC = {
yaw_p_limit: 0,
deltaMethod: 0,
vbatPidCompensation: 0,
- ptermSetpointWeight: 0,
+ dtermSetpointTransition: 0,
dtermSetpointWeight: 0,
toleranceBand: 0,
toleranceBandReduction: 0,
diff --git a/js/msp/MSPHelper.js b/js/msp/MSPHelper.js
index 03686914..67e73f39 100644
--- a/js/msp/MSPHelper.js
+++ b/js/msp/MSPHelper.js
@@ -845,7 +845,7 @@ MspHelper.prototype.process_data = function(dataHandler) {
ADVANCED_TUNING.deltaMethod = data.readU8();
ADVANCED_TUNING.vbatPidCompensation = data.readU8();
if (semver.gte(CONFIG.apiVersion, "1.20.0")) {
- ADVANCED_TUNING.ptermSetpointWeight = data.readU8();
+ ADVANCED_TUNING.dtermSetpointTransition = data.readU8();
ADVANCED_TUNING.dtermSetpointWeight = data.readU8();
ADVANCED_TUNING.toleranceBand = data.readU8();
ADVANCED_TUNING.toleranceBandReduction = data.readU8();
@@ -1471,7 +1471,7 @@ MspHelper.prototype.crunch = function(code) {
.push16(ADVANCED_TUNING.yaw_p_limit)
.push8(ADVANCED_TUNING.deltaMethod)
.push8(ADVANCED_TUNING.vbatPidCompensation)
- .push8(ADVANCED_TUNING.ptermSetpointWeight)
+ .push8(ADVANCED_TUNING.dtermSetpointTransition)
.push8(ADVANCED_TUNING.dtermSetpointWeight)
.push8(ADVANCED_TUNING.toleranceBand)
.push8(ADVANCED_TUNING.toleranceBandReduction)
diff --git a/tabs/pid_tuning.html b/tabs/pid_tuning.html
index 440ebf01..6608081d 100755
--- a/tabs/pid_tuning.html
+++ b/tabs/pid_tuning.html
@@ -309,15 +309,15 @@
-