Skip to content

Commit dd1620d

Browse files
committed
hci_transport_h2_libusb: send ISO packets over bulk endpoint
1 parent 348725b commit dd1620d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

platform/libusb/hci_transport_h2_libusb.c

+3
Original file line numberDiff line numberDiff line change
@@ -1468,6 +1468,9 @@ static int usb_send_packet(uint8_t packet_type, uint8_t * packet, int size){
14681468
switch (packet_type){
14691469
case HCI_COMMAND_DATA_PACKET:
14701470
return usb_send_cmd_packet(packet, size);
1471+
#ifdef ENABLE_LE_ISOCHRONOUS_STREAMS
1472+
case HCI_ISO_DATA_PACKET:
1473+
#endif
14711474
case HCI_ACL_DATA_PACKET:
14721475
return usb_send_acl_packet(packet, size);
14731476
#ifdef ENABLE_SCO_OVER_HCI

0 commit comments

Comments
 (0)