Skip to content

Commit

Permalink
nimble/controller: add HCI Set Event Mask Page 2 to supported commands
Browse files Browse the repository at this point in the history
This patch adds HCI Set Event Mask Page 2 to the list of supported
commands. This command is already implemented in the controller but
was not listed as supported.
  • Loading branch information
donatieng committed Dec 21, 2023
1 parent 2d03e26 commit 580a07f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion nimble/controller/src/ble_ll_hci_supp_cmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ static const uint8_t octet_15 = OCTET(
#endif
);

static const uint8_t octet_22 = OCTET(
BIT(2) /* HCI Set Event Mask Page 2 */
);

static const uint8_t octet_25 = OCTET(
BIT(0) /* HCI LE Set Event Mask */
BIT(1) /* HCI LE Read Buffer Size [v1] */
Expand Down Expand Up @@ -307,7 +311,7 @@ static const uint8_t g_ble_ll_hci_supp_cmds[64] = {
0,
0,
0,
0,
octet_22,
0,
0,
octet_25,
Expand Down

0 comments on commit 580a07f

Please sign in to comment.