monitor: Decode LE Periodic Advertising Set Info Transfer command

< HCI Command: LE Periodic Advertising Set Info Transfer (0x08|0x005b) plen 5
       Connection handle: 1
       Service data: 0x0000
       Advertising handle: 0
> HCI Event: Command Status (0x0f) plen 4
     LE Periodic Advertising Set Info Transfer (0x08|0x005b) ncmd 1
       Status: Unknown HCI Command (0x01)
This commit is contained in:
Szymon Czapracki 2020-01-08 12:47:49 +01:00 committed by Szymon Janc
parent b73d4bb9e3
commit 9e9ad8ec1c
2 changed files with 19 additions and 0 deletions

View File

@ -2474,6 +2474,13 @@ struct bt_hci_cmd_periodic_sync_trans {
uint16_t sync_handle;
} __attribute__ ((packed));
#define BT_HCI_CMD_PERIODIC_ADV_SET_INFO_TRANS 0x205b
struct bt_hci_cmd_periodic_adv_set_info_trans {
uint16_t handle;
uint16_t service_data;
uint16_t adv_handle;
} __attribute__ ((packed));
#define BT_HCI_EVT_INQUIRY_COMPLETE 0x01
struct bt_hci_evt_inquiry_complete {
uint8_t status;

View File

@ -7609,6 +7609,15 @@ static void le_periodic_adv_sync_trans(const void *data, uint8_t size)
print_field("Sync handle: %d", cmd->sync_handle);
}
static void le_periodic_adv_set_info_trans(const void *data, uint8_t size)
{
const struct bt_hci_cmd_periodic_adv_set_info_trans *cmd = data;
print_field("Connection handle: %d", cmd->handle);
print_field("Service data: 0x%4.4x", cmd->service_data);
print_field("Advertising handle: %d", cmd->adv_handle);
}
struct opcode_data {
uint16_t opcode;
int bit;
@ -8408,6 +8417,9 @@ static const struct opcode_data opcode_table[] = {
{ 0x205a, 326, "LE Periodic Advertising Sync Transfer",
le_periodic_adv_sync_trans, 6, true,
status_handle_rsp, 3, true },
{ 0x205b, 327, "LE Periodic Advertising Set Info Transfer",
le_periodic_adv_set_info_trans, 5, true,
status_handle_rsp, 3, true },
{ }
};