Skip to content

Commit dacdf7d

Browse files
PavelVPVfabiobaltieri
authored andcommitted
tests: bsim: bluetooth: host: privacy: peripheral: Fix scan interval
The scan interval must match scan window to start next scanning after previous window completes. Otherwise, one of advertisements may be missed and test will fail because it will think that RPA rotation didn't happen in time. Signed-off-by: Pavel Vasilyev <pavel.vasilyev@nordicsemi.no>
1 parent bc5b332 commit dacdf7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/bsim/bluetooth/host/privacy/peripheral/src/tester_rpa_rotation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ void start_scanning(void)
134134
struct bt_le_scan_param scan_param = {
135135
.type = BT_LE_SCAN_TYPE_PASSIVE,
136136
.options = BT_LE_SCAN_OPT_FILTER_DUPLICATE,
137-
.interval = 0x0040,
137+
.interval = 0x0020,
138138
.window = 0x0020,
139139
};
140140

0 commit comments

Comments
 (0)