You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to change set order of following two flags (bleNewStatusReceived must not be first, because loop and callbacks are running on different CPU threads):
Correct order of flag set for both callback is: void bleDisconnected() { bleDeviceConnected = false; bleNewStatusReceived = true; ...
and void bleConnected() { bleDeviceConnected = true; bleNewStatusReceived = true; ...
The text was updated successfully, but these errors were encountered:
Need to change set order of following two flags (bleNewStatusReceived must not be first, because loop and callbacks are running on different CPU threads):
Correct order of flag set for both callback is:
void bleDisconnected() { bleDeviceConnected = false; bleNewStatusReceived = true; ...
and
void bleConnected() { bleDeviceConnected = true; bleNewStatusReceived = true; ...
The text was updated successfully, but these errors were encountered: