1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 17:55:30 +03:00

Enable writing to EEPROM when using the autotune switch after landing.

This commit is contained in:
Dominic Clifton 2014-05-28 19:36:04 +01:00
parent 4a23491d49
commit 695c6a0628

View file

@ -96,8 +96,7 @@ void updateAutotuneState(void)
autoTuneWasUsed = true; autoTuneWasUsed = true;
} else { } else {
if (havePidsBeenUpdatedByAutotune()) { if (havePidsBeenUpdatedByAutotune()) {
//writeEEPROM(); saveAndReloadCurrentProfileToCurrentProfileSlot();
blinkLedAndSoundBeeper(5, 50, 1);
autotuneReset(); autotuneReset();
} }
} }