1 /*  Bluetooth Audio Content Control Identifier */
2 
3 /*
4  * Copyright (c) 2020 Bose Corporation
5  * Copyright (c) 2021 Nordic Semiconductor ASA
6  *
7  * SPDX-License-Identifier: Apache-2.0
8  */
9 
10 #ifndef ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_
11 #define ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_
12 
13 #include <zephyr/device.h>
14 #include <zephyr/types.h>
15 
16 /**
17  * @brief Gets a free CCID value.
18  *
19  * The maximum number of CCID values that can retrieved on the device is 0xFE,
20  * one less than per the GSS specification.
21  *
22  * @return uint8_t A content control ID value.
23  */
24 uint8_t bt_ccid_get_value(void);
25 
26 #endif /* ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_ */
27