Skip to content

Commit

Permalink
Fix oversight for ap gw (#7366)
Browse files Browse the repository at this point in the history
  • Loading branch information
devyte authored Jun 10, 2020
1 parent 5473656 commit ab03add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/ESP8266WiFi/src/ESP8266WiFiAP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ bool ESP8266WiFiAPClass::softAP(const char* ssid, const char* passphrase, int ch
// Invalid config
DEBUG_WIFI("[AP] IP config Invalid resetting...\n");
//192.168.4.1 , 192.168.4.1 , 255.255.255.0
ret = softAPConfig(0x0104A8C0, 0x00F4A8C0, 0x00FFFFFF);
ret = softAPConfig(0x0104A8C0, 0x0104A8C0, 0x00FFFFFF);
if(!ret) {
DEBUG_WIFI("[AP] softAPConfig failed!\n");
ret = false;
Expand Down

0 comments on commit ab03add

Please sign in to comment.