1#!/usr/bin/env bash 2# 3# Copyright (c) 2020-2022 Nordic Semiconductor ASA 4# 5# SPDX-License-Identifier: Apache-2.0 6 7SIMULATION_ID="bass_client_sync" 8VERBOSITY_LEVEL=2 9EXECUTE_TIMEOUT=120 10 11source ${ZEPHYR_BASE}/tests/bsim/sh_common.source 12 13cd ${BSIM_OUT_PATH}/bin 14 15printf "\n\n======== Running BASS Client Sync =========\n\n" 16 17Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 18 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=bap_scan_delegator_client_sync \ 19 -RealEncryption=1 -rs=24 -D=3 20 21Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 22 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 \ 23 -testid=bap_broadcast_assistant_client_sync -RealEncryption=1 -rs=46 -D=3 24 25 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 26 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=bass_broadcaster \ 27 -RealEncryption=1 -rs=69 -D=3 28 29# Simulation time should be larger than the WAIT_TIME in common.h 30Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -D=3 \ 31 -sim_length=60e6 $@ 32 33wait_for_background_jobs 34