Skip to content

Commit 5ffd876

Browse files
committed
nimble: Fix the HCI ISO packet lost status value
As per the Core, the Packet_Status_Flag of an HCI ISO Data packet must be one of the following: 0b00, 0b01, or 0b10. This fixes the BLE_HCI_ISO_PKT_STATUS_LOST value which shall be 0x02 (0b10).
1 parent ece8a7b commit 5ffd876

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

nimble/include/nimble/hci_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2463,7 +2463,7 @@ struct hci_data_hdr
24632463

24642464
#define BLE_HCI_ISO_PKT_STATUS_VALID 0x00
24652465
#define BLE_HCI_ISO_PKT_STATUS_INVALID 0x01
2466-
#define BLE_HCI_ISO_PKT_STATUS_LOST 0x10
2466+
#define BLE_HCI_ISO_PKT_STATUS_LOST 0x02
24672467

24682468
#define BLE_HCI_ISO_BIG_HANDLE_MIN 0x00
24692469
#define BLE_HCI_ISO_BIG_HANDLE_MAX 0xEF

0 commit comments

Comments
 (0)