1 /***************************************************************************//**
2  * @brief Bluetooth ISO API.
3  *
4  * This interface is for external use.
5  *******************************************************************************
6  * # License
7  * <b>Copyright 2023 Silicon Laboratories Inc. www.silabs.com</b>
8  *******************************************************************************
9  *
10  * SPDX-License-Identifier: Zlib
11  *
12  * The licensor of this software is Silicon Laboratories Inc.
13  *
14  * This software is provided 'as-is', without any express or implied
15  * warranty. In no event will the authors be held liable for any damages
16  * arising from the use of this software.
17  *
18  * Permission is granted to anyone to use this software for any purpose,
19  * including commercial applications, and to alter it and redistribute it
20  * freely, subject to the following restrictions:
21  *
22  * 1. The origin of this software must not be misrepresented; you must not
23  *    claim that you wrote the original software. If you use this software
24  *    in a product, an acknowledgment in the product documentation would be
25  *    appreciated but is not required.
26  * 2. Altered source versions must be plainly marked as such, and must not be
27  *    misrepresented as being the original software.
28  * 3. This notice may not be removed or altered from any source distribution.
29  *
30  ******************************************************************************/
31 
32 #ifndef _SL_BTCTRL_ISO_H_
33 #define _SL_BTCTRL_ISO_H_
34 
35 /**
36  * Initialize CIS component
37  */
38 void sl_btctrl_init_cis(void);
39 
40 #endif // _SL_BTCTRL_ISO_H_
41