Changed initialize data to PROGMEM to save RAM

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-11-08 21:59:59 +01:00
parent ff125360bf
commit 6e854036da
6 changed files with 21 additions and 43 deletions

View File

@@ -128,9 +128,9 @@ void TEF6686::init(byte TEF) {
if (bootstatus == 0) {
Tuner_Patch(TEF);
delay(50);
if (digitalRead(15) == LOW) Tuner_Init9216(); else Tuner_Init4000();
if (digitalRead(15) == LOW) Tuner_Init(tuner_init_tab9216); else Tuner_Init(tuner_init_tab4000);
power(1);
Tuner_Init();
Tuner_Init(tuner_init_tab);
}
}