This is an automated email from the ASF dual-hosted git repository. andk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
commit 4dfc8eee377f275215f61cc7017242c6e081f105 Author: Andrzej Kaczmarek <[email protected]> AuthorDate: Mon Jan 30 17:32:09 2023 +0100 nimble/ll: Update supported commands bitmask --- nimble/controller/src/ble_ll_hci_supp_cmd.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/nimble/controller/src/ble_ll_hci_supp_cmd.c b/nimble/controller/src/ble_ll_hci_supp_cmd.c index dc0df714..f10c8989 100644 --- a/nimble/controller/src/ble_ll_hci_supp_cmd.c +++ b/nimble/controller/src/ble_ll_hci_supp_cmd.c @@ -251,6 +251,18 @@ static const uint8_t octet_41 = OCTET( BIT(0) /* HCI LE Set Periodic Advertising Sync Transfer Parameters */ BIT(1) /* HCI LE Set Default Periodic Advertising Sync Transfer Parameters */ #endif +#if MYNEWT_VAL(BLE_LL_ISO) + BIT(5) /* HCI LE Read Buffer Size [v2] */ + BIT(6) /* HCI LE Read ISO TX Sync */ +#endif +); + +static const uint8_t octet_42 = OCTET( +#if MYNEWT_VAL(BLE_LL_ISO_BROADCASTER) + BIT(5) /* HCI LE Create BIG */ + BIT(6) /* HCI LE Create BIG Test */ + BIT(7) /* HCI LE Terminate BIG */ +#endif ); static const uint8_t octet_43 = OCTET( @@ -315,7 +327,7 @@ static const uint8_t g_ble_ll_hci_supp_cmds[64] = { octet_39, octet_40, octet_41, - 0, + octet_42, octet_43, octet_44, 0,
