1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-15 00:02:49 +03:00

Fix oversight for ap gw (#7366)

This commit is contained in:
Develo
2020-06-10 15:18:19 -04:00
committed by GitHub
parent 5473656eac
commit ab03add8d0

View File

@ -171,7 +171,7 @@ bool ESP8266WiFiAPClass::softAP(const char* ssid, const char* passphrase, int ch
// Invalid config // Invalid config
DEBUG_WIFI("[AP] IP config Invalid resetting...\n"); DEBUG_WIFI("[AP] IP config Invalid resetting...\n");
//192.168.4.1 , 192.168.4.1 , 255.255.255.0 //192.168.4.1 , 192.168.4.1 , 255.255.255.0
ret = softAPConfig(0x0104A8C0, 0x00F4A8C0, 0x00FFFFFF); ret = softAPConfig(0x0104A8C0, 0x0104A8C0, 0x00FFFFFF);
if(!ret) { if(!ret) {
DEBUG_WIFI("[AP] softAPConfig failed!\n"); DEBUG_WIFI("[AP] softAPConfig failed!\n");
ret = false; ret = false;