More fixes and added eeprom space for BW and MS

This commit is contained in:
Sjef Verhoeven PE5PVB
2023-10-28 23:37:50 +02:00
parent 17f1ef2eb6
commit 8d85e318a7
2 changed files with 9 additions and 4 deletions
+4 -1
View File
@@ -4,6 +4,7 @@
#include <WiFi.h>
#include <Wire.h>
#include <EEPROM.h>
#include <cstring>
byte menuitem;
byte items[8] = {8, 3, 6, 10, 9, 10, 8, 5};
@@ -352,7 +353,9 @@ void BuildAFScreen() {
PSold = " ";
for (byte i = 0; i < 20; i++) eonpsold[i] = "";
for (byte i = 0; i < 20; i++) mappedfreqold[i] = 0;
for (byte i = 0; i < 20; i++) eonpicodeold[0][i] = '\0';
for (byte i = 0; i < 20; i++) {
std::memset(eonpicodeold[i], '\0', sizeof(eonpicodeold[i]));
}
}
}