From 4520eca3e5d81be77dba629cd62f8d59632240c1 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 1 Apr 2024 09:50:36 -0400 Subject: [PATCH] mgmt-tester: Adjust Coded PHY scan interval and window Coded PHY interval and window recommneded by the core specification are 3x of the 1M. --- tools/mgmt-tester.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c index 884078905..8a4fbc2eb 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -9651,8 +9651,8 @@ static const char start_discovery_ext_scan_param[] = { 0x12, 0x00, /* Interval */ 0x12, 0x00, /* Window */ 0x01, /* Type */ - 0x12, 0x00, /* Interval */ - 0x12, 0x00, /* Window */ + 0x36, 0x00, /* Interval */ + 0x36, 0x00, /* Window */ }; static const struct generic_data start_discovery_le_ext_scan_param = { @@ -9733,8 +9733,8 @@ static const char start_discovery_valid_coded_scan_param[] = { 0x12, 0x00, /* Interval */ 0x12, 0x00, /* Window */ 0x01, /* Type */ - 0x12, 0x00, /* Interval */ - 0x12, 0x00, /* Window */ + 0x36, 0x00, /* Interval */ + 0x36, 0x00, /* Window */ }; static const struct generic_data start_discovery_le_coded_scan_param = { @@ -9764,8 +9764,8 @@ static const char start_discovery_valid_1m_2m_coded_scan_param[] = { 0x12, 0x00, /* Interval */ 0x12, 0x00, /* Window */ 0x01, /* Type */ - 0x12, 0x00, /* Interval */ - 0x12, 0x00, /* Window */ + 0x36, 0x00, /* Interval */ + 0x36, 0x00, /* Window */ }; static const struct generic_data start_discovery_le_1m_coded_scan_param = { -- 2.47.3