Skip to content

Commit 391f70b

Browse files
committed
Remove AP set IP Address overwrite
This is causing captive portal to fail.
1 parent 4281daa commit 391f70b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Firmware/RTK_Everywhere/WiFi.ino

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2709,12 +2709,12 @@ bool RTK_WIFI::stopStart(WIFI_ACTION_t stopping, WIFI_ACTION_t starting)
27092709
// Set the soft AP subnet mask, IP, gateway, DNS, and first DHCP addresses
27102710
if (starting & WIFI_AP_SET_IP_ADDR)
27112711
{
2712-
if (!softApSetIpAddress(_apIpAddress.toString().c_str(), _apSubnetMask.toString().c_str(),
2713-
_apGatewayAddress.toString().c_str(), _apDnsAddress.toString().c_str(),
2714-
_apFirstDhcpAddress.toString().c_str()))
2715-
{
2716-
break;
2717-
}
2712+
// if (!softApSetIpAddress(_apIpAddress.toString().c_str(), _apSubnetMask.toString().c_str(),
2713+
// _apGatewayAddress.toString().c_str(), _apDnsAddress.toString().c_str(),
2714+
// _apFirstDhcpAddress.toString().c_str()))
2715+
// {
2716+
// break;
2717+
// }
27182718
_started = _started | WIFI_AP_SET_IP_ADDR;
27192719
}
27202720

0 commit comments

Comments
 (0)