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>
21 lines
354 B
C
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);
|