From 1b09b737622fb37b8304cef491a100a624af55d7 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 14 Jan 2015 21:54:45 -0800 Subject: [PATCH] monitor: Add definitions for extended page timeout commands --- monitor/bt.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/monitor/bt.h b/monitor/bt.h index f6e898928..d91794553 100644 --- a/monitor/bt.h +++ b/monitor/bt.h @@ -1433,6 +1433,17 @@ struct bt_hci_rsp_read_local_oob_ext_data { uint8_t randomizer256[16]; } __attribute__ ((packed)); +#define BT_HCI_CMD_READ_EXT_PAGE_TIMEOUT 0x0c7e +struct bt_hci_rsp_read_ext_page_timeout { + uint8_t status; + uint16_t timeout; +} __attribute__ ((packed)); + +#define BT_HCI_CMD_WRITE_EXT_PAGE_TIMEOUT 0x0c7f +struct bt_hci_cmd_write_ext_page_timeout { + uint16_t timeout; +} __attribute__ ((packed)); + #define BT_HCI_CMD_READ_LOCAL_VERSION 0x1001 struct bt_hci_rsp_read_local_version { uint8_t status; -- 2.47.3