Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions third_party/zephyr_bluetooth-2.7.5/ble_hci_usbh.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,9 @@ static int usbh_hci_host_rcv_pkt(uint8_t *data, uint32_t len)
buf = usbh_bt_acl_recv(data, remaining);
break;

case USB_BLUETOOTH_HCI_SCO:
case USB_BLUETOOTH_HCI_ISO:
buf = usbh_bt_iso_recv(data, remaining);
break;

default:
USB_LOG_ERR("Unknown HCI type %u\r\n", pkt_indicator);
return -1;
Expand Down