summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvin <[email protected]>2026-01-05 16:09:41 +0800
committersakumisu <[email protected]>2026-01-14 14:38:52 +0800
commitf9fbf881bad05d003681d5d1c9be57355c029ce7 (patch)
treed2470fdfcb255b78a570d8894479ba80b996c8f4
parentde844391bda3e08b6a5e8d88d53b9afcea4ed292 (diff)
fix(bluetooth): Correct HCI packet type from SCO to ISO in USB host.
-rw-r--r--third_party/zephyr_bluetooth-2.7.5/ble_hci_usbh.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/third_party/zephyr_bluetooth-2.7.5/ble_hci_usbh.c b/third_party/zephyr_bluetooth-2.7.5/ble_hci_usbh.c
index 70448b98..d89a08ca 100644
--- a/third_party/zephyr_bluetooth-2.7.5/ble_hci_usbh.c
+++ b/third_party/zephyr_bluetooth-2.7.5/ble_hci_usbh.c
@@ -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;