From 34a1d676c98f563ddb2c5fd5b3ef2c51ef54df7c Mon Sep 17 00:00:00 2001 From: Lingao Meng Date: Thu, 2 Sep 2021 08:53:06 +0800 Subject: [PATCH] samples: bluetooth: Fix scan filter We should use no filter filter to process adv data according to code comment above. Signed-off-by: Lingao Meng --- samples/bluetooth/central_ht/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/bluetooth/central_ht/src/main.c b/samples/bluetooth/central_ht/src/main.c index 68c53d2ece9..d1e3684e4a6 100644 --- a/samples/bluetooth/central_ht/src/main.c +++ b/samples/bluetooth/central_ht/src/main.c @@ -228,7 +228,7 @@ static int scan_start(void) */ struct bt_le_scan_param scan_param = { .type = BT_LE_SCAN_TYPE_ACTIVE, - .options = BT_LE_SCAN_OPT_FILTER_DUPLICATE, + .options = BT_LE_SCAN_OPT_NONE, .interval = BT_GAP_SCAN_FAST_INTERVAL, .window = BT_GAP_SCAN_FAST_WINDOW, };