Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ea54fff1 authored by Patty Huang's avatar Patty Huang
Browse files

Correct APCF secletion filed for AD type check

APCF Feature Selection for AD Type check is bit 8(0x100)

Bug: 281790117
Test: manual
Change-Id: I64f301137797a44c69e06e744a653bda72c85b18
parent 52f024b8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -55,7 +55,8 @@ extern tBTM_CB btm_cb;
namespace {
constexpr char kBtmLogTag[] = "SCAN";
constexpr uint16_t kAllowServiceDataFilter = 0x0040;
constexpr uint16_t kAllowADTypeFilter = 0x80;
// Bit 8 for enable AD Type Check
constexpr uint16_t kAllowADTypeFilter = 0x100;
constexpr uint8_t kFilterLogicOr = 0x00;
constexpr uint8_t kFilterLogicAnd = 0x01;
constexpr uint8_t kLowestRssiValue = 129;