monitor: Decode LE Periodic Advertising Set Info Transfer command
authorSzymon Czapracki <szymon.czapracki@codecoup.pl>
Wed, 8 Jan 2020 11:47:49 +0000 (12:47 +0100)
committerAyush Garg <ayush.garg@samsung.com>
Mon, 12 Apr 2021 09:00:48 +0000 (14:30 +0530)
< 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)

Signed-off-by: Anuj Jain <anuj01.jain@samsung.com>
Signed-off-by: Ayush Garg <ayush.garg@samsung.com>
monitor/bt.h
monitor/packet.c

index efaf80f..f8422cc 100755 (executable)
@@ -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;
index 850d239..c8d7b4c 100755 (executable)
@@ -7603,6 +7603,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;
@@ -8402,6 +8411,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 },
        { }
 };