Merge/rebase

This commit is contained in:
Gilles Boccon-Gibod
2022-12-16 19:40:57 -08:00
parent 5d83deffa4
commit d12b15b5d4
8 changed files with 1015 additions and 151 deletions

View File

@@ -428,8 +428,8 @@ class Host(AbortableEventEmitter):
and self.acl_packets_in_flight < self.hc_total_num_le_acl_data_packets
):
packet = self.acl_packet_queue.pop()
self.send_hci_packet(packet)
self.acl_packets_in_flight += 1
self.send_hci_packet(packet)
def supports_command(self, command):
# Find the support flag position for this command
@@ -568,7 +568,7 @@ class Host(AbortableEventEmitter):
else:
logger.warning(
color(
'!!! {total_packets} completed but only '
f'!!! {total_packets} completed but only '
f'{self.acl_packets_in_flight} in flight'
)
)