Merge pull request #1034 from Cleric-K/dterm-sp-weight-tooltip
Dterm Setpoint Weight tooltip update10.3.x-maintenance
commit
e3b77bc6c8
|
@ -864,6 +864,9 @@ MspHelper.prototype.process_data = function(dataHandler) {
|
||||||
ADVANCED_TUNING.itermThrottleThreshold = data.readU16();
|
ADVANCED_TUNING.itermThrottleThreshold = data.readU16();
|
||||||
ADVANCED_TUNING.itermAcceleratorGain = data.readU16();
|
ADVANCED_TUNING.itermAcceleratorGain = data.readU16();
|
||||||
}
|
}
|
||||||
|
if (semver.gte(CONFIG.apiVersion, "1.39.0")) {
|
||||||
|
ADVANCED_TUNING.dtermSetpointWeight = data.readU16();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case MSPCodes.MSP_SENSOR_CONFIG:
|
case MSPCodes.MSP_SENSOR_CONFIG:
|
||||||
|
@ -1479,7 +1482,7 @@ MspHelper.prototype.crunch = function(code) {
|
||||||
.push8(ADVANCED_TUNING.deltaMethod)
|
.push8(ADVANCED_TUNING.deltaMethod)
|
||||||
.push8(ADVANCED_TUNING.vbatPidCompensation)
|
.push8(ADVANCED_TUNING.vbatPidCompensation)
|
||||||
.push8(ADVANCED_TUNING.dtermSetpointTransition)
|
.push8(ADVANCED_TUNING.dtermSetpointTransition)
|
||||||
.push8(ADVANCED_TUNING.dtermSetpointWeight)
|
.push8(Math.min(ADVANCED_TUNING.dtermSetpointWeight, 254))
|
||||||
.push8(ADVANCED_TUNING.toleranceBand)
|
.push8(ADVANCED_TUNING.toleranceBand)
|
||||||
.push8(ADVANCED_TUNING.toleranceBandReduction)
|
.push8(ADVANCED_TUNING.toleranceBandReduction)
|
||||||
.push8(ADVANCED_TUNING.itermThrottleGain)
|
.push8(ADVANCED_TUNING.itermThrottleGain)
|
||||||
|
@ -1493,6 +1496,9 @@ MspHelper.prototype.crunch = function(code) {
|
||||||
buffer.push16(ADVANCED_TUNING.itermThrottleThreshold)
|
buffer.push16(ADVANCED_TUNING.itermThrottleThreshold)
|
||||||
.push16(ADVANCED_TUNING.itermAcceleratorGain);
|
.push16(ADVANCED_TUNING.itermAcceleratorGain);
|
||||||
}
|
}
|
||||||
|
if (semver.gte(CONFIG.apiVersion, "1.39.0")) {
|
||||||
|
buffer.push16(ADVANCED_TUNING.dtermSetpointWeight);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
// only supports 1 version pre bf 3.0
|
// only supports 1 version pre bf 3.0
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -6,7 +6,10 @@ TABS.pid_tuning = {
|
||||||
updating: true,
|
updating: true,
|
||||||
dirty: false,
|
dirty: false,
|
||||||
currentProfile: null,
|
currentProfile: null,
|
||||||
currentRateProfile: null
|
currentRateProfile: null,
|
||||||
|
SETPOINT_WEIGHT_RANGE_LOW: 2.55,
|
||||||
|
SETPOINT_WEIGHT_RANGE_HIGH: 20,
|
||||||
|
SETPOINT_WEIGHT_RANGE_LEGACY: 2.54
|
||||||
};
|
};
|
||||||
|
|
||||||
TABS.pid_tuning.initialize = function (callback) {
|
TABS.pid_tuning.initialize = function (callback) {
|
||||||
|
@ -250,7 +253,8 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
dtermSetpointTransitionRangeElement.val(ADVANCED_TUNING.dtermSetpointTransition / 100);
|
dtermSetpointTransitionRangeElement.val(ADVANCED_TUNING.dtermSetpointTransition / 100);
|
||||||
|
|
||||||
$('input[name="dtermSetpoint-number"]').val(ADVANCED_TUNING.dtermSetpointWeight / 100);
|
$('input[name="dtermSetpoint-number"]').val(ADVANCED_TUNING.dtermSetpointWeight / 100);
|
||||||
$('input[name="dtermSetpoint-range"]').val(ADVANCED_TUNING.dtermSetpointWeight / 100);
|
$('input[name="dtermSetpoint-range"]').val(ADVANCED_TUNING.dtermSetpointWeight / 100)
|
||||||
|
.change(); // trigger adjustRangeElement()
|
||||||
} else {
|
} else {
|
||||||
$('.pid_filter .newFilter').hide();
|
$('.pid_filter .newFilter').hide();
|
||||||
}
|
}
|
||||||
|
@ -516,6 +520,11 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
$('.tab-pid_tuning .pidTuningFeatures').hide();
|
$('.tab-pid_tuning .pidTuningFeatures').hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (semver.lt(CONFIG.apiVersion, "1.39.0")) {
|
||||||
|
$('input[name="dtermSetpoint-number"]').attr('max', self.SETPOINT_WEIGHT_RANGE_LEGACY);
|
||||||
|
$('input[name="dtermSetpoint-range"]').attr('max', self.SETPOINT_WEIGHT_RANGE_LEGACY);
|
||||||
|
}
|
||||||
|
|
||||||
// translate to user-selected language
|
// translate to user-selected language
|
||||||
i18n.localizePage();
|
i18n.localizePage();
|
||||||
|
|
||||||
|
@ -707,11 +716,25 @@ TABS.pid_tuning.initialize = function (callback) {
|
||||||
|
|
||||||
var dtermNumberElement = $('input[name="dtermSetpoint-number"]');
|
var dtermNumberElement = $('input[name="dtermSetpoint-number"]');
|
||||||
var dtermRangeElement = $('input[name="dtermSetpoint-range"]');
|
var dtermRangeElement = $('input[name="dtermSetpoint-range"]');
|
||||||
|
|
||||||
|
function adjustRangeElement(value) {
|
||||||
|
var range = dtermRangeElement.attr('max');
|
||||||
|
if (value >= self.SETPOINT_WEIGHT_RANGE_LOW && range <= self.SETPOINT_WEIGHT_RANGE_LOW) {
|
||||||
|
dtermRangeElement.attr('max', self.SETPOINT_WEIGHT_RANGE_HIGH);
|
||||||
|
} else if (value < self.SETPOINT_WEIGHT_RANGE_LOW && range > self.SETPOINT_WEIGHT_RANGE_LOW) {
|
||||||
|
dtermRangeElement.attr('max', self.SETPOINT_WEIGHT_RANGE_LOW);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dtermNumberElement.change(function () {
|
dtermNumberElement.change(function () {
|
||||||
dtermRangeElement.val($(this).val());
|
var value = $(this).val();
|
||||||
|
adjustRangeElement(value);
|
||||||
|
dtermRangeElement.val(value);
|
||||||
});
|
});
|
||||||
dtermRangeElement.change(function () {
|
dtermRangeElement.change(function () {
|
||||||
dtermNumberElement.val($(this).val());
|
var value = $(this).val();
|
||||||
|
adjustRangeElement(value);
|
||||||
|
dtermNumberElement.val(value);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$('.tab-pid_tuning .rate_profile').hide();
|
$('.tab-pid_tuning .rate_profile').hide();
|
||||||
|
|
|
@ -294,8 +294,8 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="dtermSetpoint" style="height:30px;">
|
<tr class="dtermSetpoint" style="height:30px;">
|
||||||
<td><input type="number" name="dtermSetpoint-number" step="0.01" min="0.00" max="2.54"/></td>
|
<td><input type="number" name="dtermSetpoint-number" step="0.01" min="0.00" max="20"/></td>
|
||||||
<td class="slider"><input type="range" name="dtermSetpoint-range" step="0.01" min="0.00" max="2.54"/></td>
|
<td class="slider"><input type="range" name="dtermSetpoint-range" step="0.01" min="0.00" max="20"/></td>
|
||||||
<td>
|
<td>
|
||||||
<div>
|
<div>
|
||||||
<label>
|
<label>
|
||||||
|
|
Loading…
Reference in New Issue