1
0
Fork 0
mirror of https://github.com/iNavFlight/inav-configurator.git synced 2025-07-14 03:49:53 +03:00

Merge pull request #1838 from shota3527/sh_mixerprofile

Fix Stop motors on low throttle turn off
This commit is contained in:
Paweł Spychalski 2023-10-05 09:55:39 +02:00 committed by GitHub
commit c66e90a1f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1454,7 +1454,7 @@ var mspHelper = (function (gui) {
case MSPCodes.MSP2_INAV_MIXER:
MIXER_CONFIG.yawMotorDirection = data.getInt8(0);
MIXER_CONFIG.yawJumpPreventionLimit = data.getUint8(1, true);
MIXER_CONFIG.motorStopOnLow = data.getUint8(1, true);
MIXER_CONFIG.motorStopOnLow = data.getUint8(2, true);
MIXER_CONFIG.platformType = data.getInt8(3);
MIXER_CONFIG.hasFlaps = data.getInt8(4);
MIXER_CONFIG.appliedMixerPreset = data.getInt16(5, true);