From b67ada19a7235552c802d3dccca011245379b6d5 Mon Sep 17 00:00:00 2001 From: Eri Kasamatsu Date: Tue, 9 Feb 2016 15:11:51 +0100 Subject: [PATCH] OCF for LE Extended Set Scan Parameters Cmd is not correct OCF for LE Extended Set Scan Paramaters Cmd is defined as 0x15A in documentation but it is defined as 0x160 in stack. This results in command failing due to unknown hci command error. Change-Id: Ia779164b7c03daa8053fb65e4fc8281235904031 --- stack/include/hcidefs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack/include/hcidefs.h b/stack/include/hcidefs.h index bfa1a91e0..8469146f4 100644 --- a/stack/include/hcidefs.h +++ b/stack/include/hcidefs.h @@ -368,7 +368,7 @@ #define HCI_BLE_ENERGY_INFO_OCF (0x0159 | HCI_GRP_VENDOR_SPECIFIC) /* Extended BLE Scan parameters OCF */ -#define HCI_BLE_EXTENDED_SCAN_PARAMS_OCF (0x0160 | HCI_GRP_VENDOR_SPECIFIC) +#define HCI_BLE_EXTENDED_SCAN_PARAMS_OCF (0x015A | HCI_GRP_VENDOR_SPECIFIC) /* subcode for multi adv feature */ #define BTM_BLE_MULTI_ADV_SET_PARAM 0x01 -- 2.11.0