From 83f090a710dbb0ab7a947634d99a75e3c46c777a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Battrel?= Date: Thu, 25 Apr 2024 21:45:26 +0200 Subject: [PATCH] Bluetooth: Test: Update `hci_prop_evt` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Accept LE Read Max Advertising Data Length command during HCI initialization. Signed-off-by: Théo Battrel --- tests/bluetooth/hci_prop_evt/src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/bluetooth/hci_prop_evt/src/main.c b/tests/bluetooth/hci_prop_evt/src/main.c index cac605bd2e..cf46a2bad6 100644 --- a/tests/bluetooth/hci_prop_evt/src/main.c +++ b/tests/bluetooth/hci_prop_evt/src/main.c @@ -201,6 +201,9 @@ static const struct cmd_handler cmds[] = { { BT_HCI_OP_LE_SET_RANDOM_ADDRESS, sizeof(struct bt_hci_cp_le_set_random_address), generic_success }, + { BT_HCI_OP_LE_READ_MAX_ADV_DATA_LEN, + sizeof(struct bt_hci_rp_le_read_max_adv_data_len), + generic_success }, }; /* HCI driver open. */