From b4eb3bbdd5cbe535d23b2b4d276e043a9fd76bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krzysztof=20Kopy=C5=9Bci=C5=84ski?= Date: Fri, 4 Jun 2021 15:01:20 +0200 Subject: [PATCH] apps: blestress: fix test 6 Disable filtering of advertising reports, as we check the same data N times, and only first time is registered with filtering enabled. --- apps/blestress/src/tx_stress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/blestress/src/tx_stress.c b/apps/blestress/src/tx_stress.c index 1711f9fbf..5d5f22703 100644 --- a/apps/blestress/src/tx_stress.c +++ b/apps/blestress/src/tx_stress.c @@ -73,7 +73,7 @@ tx_stress_simple_scan(ble_gap_event_fn *cb, uint16_t duration) params.passive = 1; params.window = BLE_GAP_SCAN_FAST_WINDOW; - rc = ble_gap_ext_disc(own_addr_type, duration, 0, 1, 0, 0, ¶ms, NULL, + rc = ble_gap_ext_disc(own_addr_type, duration, 0, 0, 0, 0, ¶ms, NULL, cb, NULL); if (rc != 0) {