Dalsi fixy v ESP32 casti

This commit is contained in:
Pavel Brychta 2019-01-06 11:00:45 +01:00
parent 90618b0ae6
commit 3172bb0d17

View File

@ -893,6 +893,14 @@ wificonfigresult_t WiFiConfig::begin(int configarea, int forceConfigure, wificon
if (cb) if (cb)
cb(WCS_CONNECTSTART); // signalizujeme zacatek pokusu o pripojeni (zde se nic jineho stejne nestane...) cb(WCS_CONNECTSTART); // signalizujeme zacatek pokusu o pripojeni (zde se nic jineho stejne nestane...)
break; break;
#if !defined(ESP8266)
default:
DEBUG_MSG("Wrong config (%d)\r\n", EEPROM.read(configBase + offsetof(wificonfigarea_t, mode)));
_status = 0xfe;
result = _setupAP(cb);
break;
#endif
} }
} }
} }