zephyr/samples/bluetooth/tmap_bms/src/tmap_bms.h
Silviu Petria f3aaf33422 Bluetooth: Audio: Add TMAP broadcast samples
Add two TMAP broadcast sample applications.

tmap_bms implements the Broadcast Media Sender role. It uses CAP
Initiator broadcast APIs to broadcast an audio stream.

tmap_bmr implements the Broadcast Media Receiver role. It scans and
syncs to the PA having filtered the EA by the presence of TMAP role
information. It also instantiates the VCP.

Signed-off-by: Silviu Petria <silviu.petria@nxp.com>
2023-07-18 11:09:31 +00:00

21 lines
354 B
C

/*
* Copyright 2023 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/types.h>
/**
* @brief Initialize the CAP Initiator role
*
* @return 0 if success, errno on failure.
*/
int cap_initiator_init(void);
/**
* @brief Setup streams for CAP Initiator
*
* @return 0 if success, errno on failure.
*/
int cap_initiator_setup(void);