mirror of
https://github.com/betaflight/betaflight-configurator.git
synced 2025-07-16 04:45:20 +03:00
Rename sliders FF to feedforward
This commit is contained in:
parent
5fb3007a17
commit
68dd5dd902
5 changed files with 30 additions and 30 deletions
|
@ -1491,7 +1491,7 @@ MspHelper.prototype.process_data = function(dataHandler) {
|
|||
FC.TUNING_SLIDERS.slider_pd_ratio = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_pd_gain = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_dmin_ratio = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_ff_gain = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_feedforward_gain = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_dterm_filter = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_dterm_filter_multiplier = data.readU8();
|
||||
FC.TUNING_SLIDERS.slider_gyro_filter = data.readU8();
|
||||
|
@ -2310,7 +2310,7 @@ MspHelper.prototype.crunch = function(code) {
|
|||
.push8(FC.TUNING_SLIDERS.slider_pd_ratio)
|
||||
.push8(FC.TUNING_SLIDERS.slider_pd_gain)
|
||||
.push8(FC.TUNING_SLIDERS.slider_dmin_ratio)
|
||||
.push8(FC.TUNING_SLIDERS.slider_ff_gain)
|
||||
.push8(FC.TUNING_SLIDERS.slider_feedforward_gain)
|
||||
.push8(FC.TUNING_SLIDERS.slider_dterm_filter)
|
||||
.push8(FC.TUNING_SLIDERS.slider_dterm_filter_multiplier)
|
||||
.push8(FC.TUNING_SLIDERS.slider_gyro_filter)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue