Merge branch 'master' into wls_add_types2

This commit is contained in:
Ian McEwen
2024-10-29 06:19:16 -07:00
committed by GitHub
18 changed files with 1813 additions and 1489 deletions

View File

@@ -222,7 +222,7 @@ class BLEInterface(MeshInterface):
logging.error(f"Error closing mesh interface: {e}")
if self._want_receive:
self.want_receive = False # Tell the thread we want it to stop
self._want_receive = False # Tell the thread we want it to stop
if self._receiveThread:
self._receiveThread.join(
timeout=2
@@ -234,6 +234,7 @@ class BLEInterface(MeshInterface):
self.client.disconnect()
self.client.close()
self.client = None
self._disconnected() # send the disconnected indicator up to clients
class BLEClient: