Added initial CCP client implementation that simply does discovery of TBS on a remote CCP server. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
27 lines
766 B
Bash
Executable File
27 lines
766 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source ${ZEPHYR_BASE}/tests/bsim/sh_common.source
|
|
|
|
VERBOSITY_LEVEL=2
|
|
|
|
cd ${BSIM_OUT_PATH}/bin
|
|
|
|
SIMULATION_ID="ccp"
|
|
|
|
Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \
|
|
-v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=ccp_call_control_server \
|
|
-RealEncryption=1 -rs=10 -D=2
|
|
|
|
Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \
|
|
-v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=ccp_call_control_client \
|
|
-RealEncryption=1 -rs=20 -D=2
|
|
|
|
# Simulation time should be larger than the WAIT_TIME in common.h
|
|
Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -D=2 -sim_length=60e6 $@
|
|
|
|
wait_for_background_jobs
|