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

Merge pull request #9812 from iNavFlight/dzikuvx-fix-ez-tune-cli

Fix missing EzTune settings in dump and diff
This commit is contained in:
Paweł Spychalski 2024-03-21 19:48:18 +01:00 committed by GitHub
commit 20fd86f04b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3359,6 +3359,7 @@ static void cliDumpProfile(uint8_t profileIndex, uint8_t dumpMask)
cliPrintLinef("profile %d\r\n", getConfigProfile() + 1);
dumpAllValues(PROFILE_VALUE, dumpMask);
dumpAllValues(CONTROL_RATE_VALUE, dumpMask);
dumpAllValues(EZ_TUNE_VALUE, dumpMask);
}
static void cliBatteryProfile(char *cmdline)