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

Merge pull request #2031 from iNavFlight/dzikuvx-ez-tune-snappiness

Ez Tune snappiness
This commit is contained in:
Paweł Spychalski 2024-04-21 11:17:03 +02:00 committed by GitHub
commit eae4e132e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 23 additions and 1 deletions

View file

@ -566,7 +566,8 @@ var FC = {
stability: null,
aggressiveness: null,
rate: null,
expo: null
expo: null,
snappiness: null,
};

View file

@ -1515,6 +1515,7 @@ var mspHelper = (function (gui) {
EZ_TUNE.aggressiveness = data.getUint8(7);
EZ_TUNE.rate = data.getUint8(8);
EZ_TUNE.expo = data.getUint8(9);
EZ_TUNE.snappiness = data.getUint8(10);
break;
case MSPCodes.MSP2_INAV_EZ_TUNE_SET:
@ -2159,6 +2160,7 @@ var mspHelper = (function (gui) {
buffer.push(EZ_TUNE.aggressiveness);
buffer.push(EZ_TUNE.rate);
buffer.push(EZ_TUNE.expo);
buffer.push(EZ_TUNE.snappiness);
break;