diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 1f74a32..098a414 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -1199,10 +1199,16 @@ void ModeButtonPress() { RDSstatus = 0; if (specialstepOIRT) { if (frequency >= (FREQ_FM_OIRT_START) && frequency <= (FREQ_FM_OIRT_END)) { - if (frequency % 3 != 0) { Round30K(frequency); } + if (frequency % 3 != 0) { + Round30K(frequency); + EEPROM.writeUInt(0,frequency); + } } }else { - if (frequency % 10 != 0) { Round50K(frequency); } + if (frequency % 10 != 0) { + Round50K(frequency); + EEPROM.writeUInt(0,frequency); + } } BuildDisplay(); ShowSignalLevel();