You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -565,14 +567,19 @@ unsigned long WiFiClass::getTime() {
565
567
returnmillis();
566
568
}
567
569
568
-
voidWiFiClass::lowPowerMode() {
570
+
voidWiFiClass::aggressiveLowPowerMode() {
569
571
cyw43_wifi_pm(&cyw43_state, CYW43_AGGRESSIVE_PM);
570
572
}
571
573
572
-
voidWiFiClass::noLowPowerMode() {
574
+
voidWiFiClass::defaultLowPowerMode() {
573
575
cyw43_wifi_pm(&cyw43_state, CYW43_DEFAULT_PM);
574
576
}
575
577
578
+
// The difference between the default CYW43_DEFAULT_PM (0xA11142) and not low power (0xA11140) is that it changed from "Powersave mode on specified interface with High throughput" to "No Powersave mode". All other parameters stayed the same.
0 commit comments