This commit separates each test by layer level. Obviously the tests will run the whole stack, but they should be separated by which component/layer they intend on testing. Signed-off-by: Jonathan Rico <jonathan.rico@nordicsemi.no>
20 lines
572 B
C
20 lines
572 B
C
/**
|
|
* Common functions and helpers for unicast audio BSIM audio tests
|
|
*
|
|
* Copyright (c) 2021-2022 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_TEST_BSIM_BT_AUDIO_TEST_UNICAST_COMMON_
|
|
#define ZEPHYR_TEST_BSIM_BT_AUDIO_TEST_UNICAST_COMMON_
|
|
|
|
#include <zephyr/bluetooth/bluetooth.h>
|
|
#include <zephyr/bluetooth/audio/audio.h>
|
|
|
|
void print_hex(const uint8_t *ptr, size_t len);
|
|
void print_codec(const struct bt_codec *codec);
|
|
void print_qos(const struct bt_codec_qos *qos);
|
|
|
|
#endif /* ZEPHYR_TEST_BSIM_BT_AUDIO_TEST_UNICAST_COMMON_ */
|