Skip to content

Commit 6f045c1

Browse files
ppryga-nordiccfriedt
authored andcommitted
tests: Bluetooth: bsim_test_iso: Change wait time in BIG receiver
The receiver and transmitter in the test are synchronized by use of sleep functions. The change in handling of periodic advertising synchronized event caused missmach in waiting times. Receiver is notified about established synchronization later that it was in the past. Due to that the wait for end of transmitter operation was too long. Temporary fix for the problem is decrease of receiver sleep time by one periodic advertising interval. Signed-off-by: Piotr Pryga <[email protected]>
1 parent d9eb21a commit 6f045c1

File tree

1 file changed

+1
-1
lines changed
  • tests/bluetooth/bsim_bt/bsim_test_iso/src

1 file changed

+1
-1
lines changed

tests/bluetooth/bsim_bt/bsim_test_iso/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ static void test_iso_recv_main(void)
358358
}
359359
printk("success.\n");
360360

361-
k_sleep(K_MSEC(15000));
361+
k_sleep(K_MSEC(13800));
362362

363363
printk("Terminating BIG...");
364364
err = ll_big_sync_terminate(big_handle, (void **)&node_rx);

0 commit comments

Comments
 (0)