zephyr/subsys/bluetooth/audio/ccid_internal.h
Gerard Marull-Paretas 5113c1418d subsystems: migrate includes to <zephyr/...>
In order to bring consistency in-tree, migrate all subsystems code to
the new prefix <zephyr/...>. Note that the conversion has been scripted,
refer to zephyrproject-rtos#45388 for more details.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
2022-05-09 12:07:35 +02:00

27 lines
622 B
C

/* Bluetooth Audio Content Control Identifier */
/*
* Copyright (c) 2020 Bose Corporation
* Copyright (c) 2021 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_
#define ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_
#include <zephyr/device.h>
#include <zephyr/types.h>
/**
* @brief Gets a free CCID value.
*
* The maximum number of CCID values that can retrieved on the device is 0xFE,
* one less than per the GSS specification.
*
* @return uint8_t A content control ID value.
*/
uint8_t bt_ccid_get_value(void);
#endif /* ZEPHYR_INCLUDE_BLUETOOTH_CCID_H_ */