Skip to content

Commit ab03add

Browse files
authored
Fix oversight for ap gw (#7366)
1 parent 5473656 commit ab03add

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ bool ESP8266WiFiAPClass::softAP(const char* ssid, const char* passphrase, int ch
171171
// Invalid config
172172
DEBUG_WIFI("[AP] IP config Invalid resetting...\n");
173173
//192.168.4.1 , 192.168.4.1 , 255.255.255.0
174-
ret = softAPConfig(0x0104A8C0, 0x00F4A8C0, 0x00FFFFFF);
174+
ret = softAPConfig(0x0104A8C0, 0x0104A8C0, 0x00FFFFFF);
175175
if(!ret) {
176176
DEBUG_WIFI("[AP] softAPConfig failed!\n");
177177
ret = false;

0 commit comments

Comments
 (0)