Skip to content

Commit

Permalink
Merge pull request #539 from google/gbg/usb-thread-hotfix
Browse files Browse the repository at this point in the history
hotfix for usb transport
  • Loading branch information
barbibulle authored Aug 23, 2024
2 parents b2bb82a + a311c3f commit b114c0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumble/transport/usb.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def on_packet(self, packet):
self.packets.put_nowait(packet)

def transfer_callback(self, transfer):
self.acl_out_transfer_ready.release()
self.loop.call_soon_threadsafe(self.acl_out_transfer_ready.release)
status = transfer.getStatus()

# pylint: disable=no-member
Expand Down

0 comments on commit b114c0d

Please sign in to comment.