We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61b4789 commit aa0bad1Copy full SHA for aa0bad1
Firmware/RTK_Everywhere/WiFi.ino
@@ -3065,8 +3065,16 @@ bool RTK_WIFI::stopStart(WIFI_ACTION_t stopping, WIFI_ACTION_t starting)
3065
systemPrintf("ERROR: RTK_WIFI::stopStart failed!\r\n");
3066
if (settings.debugWifiState && _verbose)
3067
{
3068
- reportHeapNow(true);
3069
systemPrintf("WiFi: RTK_WIFI::stopStart returning; %s\r\n", enabled ? "true" : "false");
+ if(enabled == false)
3070
+ {
3071
+ systemPrintf("0x%08x: _started\r\n", _started);
3072
+ systemPrintf("0x%08x: allOnline\r\n", allOnline);
3073
+ systemPrintf("0x%08x: (_started & allOnline)\r\n", (_started & allOnline));
3074
+ systemPrintf("0x%08x: expected\r\n", expected);
3075
+ }
3076
+
3077
+ reportHeapNow(true);
3078
}
3079
return enabled;
3080
0 commit comments