Skip to content

Commit 480328c

Browse files
committed
Include started bits inside expected bits
1 parent 58dd073 commit 480328c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Everywhere/WiFi.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2413,7 +2413,7 @@ bool RTK_WIFI::stopStart(WIFI_ACTION_t stopping, WIFI_ACTION_t starting)
24132413
stopping &= _started;
24142414

24152415
// Determine the components that are being started
2416-
expected = starting & allOnline;
2416+
expected = (_started | starting) & allOnline;
24172417

24182418
// Determine which components are being restarted
24192419
restarting = _started & stopping & starting;

0 commit comments

Comments
 (0)