Added option to disable 802.11b for ESP8266

This commit is contained in:
Gunnar Skjold
2023-10-14 08:44:55 +02:00
parent 2a44f89a7b
commit 6a0921a445
5 changed files with 17 additions and 20 deletions

View File

@@ -1200,6 +1200,7 @@ void AmsConfiguration::print(Print* debugger)
}
debugger->printf_P(PSTR("Hostname: '%s'\r\n"), wifi.hostname);
debugger->printf_P(PSTR("mDNS: '%s'\r\n"), wifi.mdns ? "Yes" : "No");
debugger->printf_P(PSTR("802.11b: '%s'\r\n"), wifi.use11b ? "Yes" : "No");
debugger->println(F(""));
delay(10);
debugger->flush();