1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-24 16:55:22 +03:00

Merge pull request #880 from iNavFlight/dzikuvx-fix-throttle-command-zeroing

Fix throttle commands zeroing on Configuration page
This commit is contained in:
Paweł Spychalski 2019-12-21 12:23:16 +01:00 committed by GitHub
commit 823a9cb806
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -584,11 +584,6 @@ TABS.configuration.initialize = function (callback, scrollPosition) {
ARMING_CONFIG.auto_disarm_delay = parseInt($('input[name="autodisarmdelay"]').val());
MISC.minthrottle = parseInt($('#minthrottle').val());
MISC.midrc = parseInt($('#midthrottle').val());
MISC.maxthrottle = parseInt($('#maxthrottle').val());
MISC.mincommand = parseInt($('#mincommand').val());
MISC.battery_cells = parseInt($('#cells').val());
MISC.voltage_source = parseInt($('#voltagesource').val());
MISC.vbatdetectcellvoltage = parseFloat($('#celldetectvoltage').val());