Merge pull request #1151 from avsaase/avs-fix-throttle-smoothing-parameters-bug

Fix bug in throttle smoothing parameters settings
pull/1158/head
Paweł Spychalski 4 years ago committed by GitHub
commit 21f1ae1e93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2561,10 +2561,10 @@
"message": "How smoothly the autopilot adjusts the throttle level in response to pitch angle changes [0-9]." "message": "How smoothly the autopilot adjusts the throttle level in response to pitch angle changes [0-9]."
}, },
"pitchToThrottleThreshold": { "pitchToThrottleThreshold": {
"message": "Instantaneous pitch adjustment threshold [centidegrees]" "message": "Instantaneous throttle adjustment threshold [centidegrees]"
}, },
"pitchToThrottleThresholdHelp": { "pitchToThrottleThresholdHelp": {
"message": "The autopilot will instantly adjust the throttle level according to pitch to throttle if the pitch angle is more this many centidegrees from the filtered value." "message": "The autopilot will instantly adjust the throttle level without smoothing according to pitch to throttle if the pitch angle is more this many centidegrees from the filtered value."
}, },
"loiterRadius": { "loiterRadius": {
"message": "Loiter radius [cm]" "message": "Loiter radius [cm]"

@ -388,7 +388,7 @@
</div> </div>
<div class="number"> <div class="number">
<input id="pitchToThrottleSmoothing" type="number" data-simple-bind="nav_fw_pitch2thr_smoothing" data-setting-multiplier="1" step="0" min="0" max="9"> <input id="pitchToThrottleSmoothing" type="number" data-setting="nav_fw_pitch2thr_smoothing" data-setting-multiplier="1" step="0" min="0" max="9">
<label for="pitchToThrottleSmoothing"> <label for="pitchToThrottleSmoothing">
<span data-i18n="pitchToThrottleSmoothing"></span> <span data-i18n="pitchToThrottleSmoothing"></span>
</label> </label>
@ -396,7 +396,7 @@
</div> </div>
<div class="number"> <div class="number">
<input id="pitchToThrottleThreshold" type="number" data-simple-bind="nav_fw_pitch2thr_threshold" data-setting-multiplier="1" step="1" min="0" max="900"> <input id="pitchToThrottleThreshold" type="number" data-setting="nav_fw_pitch2thr_threshold" data-setting-multiplier="1" step="1" min="0" max="900">
<label for="pitchToThrottleThreshold"> <label for="pitchToThrottleThreshold">
<span data-i18n="pitchToThrottleThreshold"></span> <span data-i18n="pitchToThrottleThreshold"></span>
</label> </label>

Loading…
Cancel
Save