This is an automated email from the ASF dual-hosted git repository.

kopyscinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit b4eb3bbdd5cbe535d23b2b4d276e043a9fd76bec
Author: Krzysztof Kopyściński <[email protected]>
AuthorDate: Fri Jun 4 15:01:20 2021 +0200

    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, &params, NULL,
+    rc = ble_gap_ext_disc(own_addr_type, duration, 0, 0, 0, 0, &params, NULL,
                           cb, NULL);
 
     if (rc != 0) {

Reply via email to