1 /** 2 * @file 3 * @brief Internal APIs for Bluetooth CSIP 4 * 5 * Copyright (c) 2021-2022 Nordic Semiconductor ASA 6 * 7 * SPDX-License-Identifier: Apache-2.0 8 */ 9 10 #include <zephyr/bluetooth/audio/csip.h> 11 12 13 #define BT_CSIP_SIRK_TYPE_ENCRYPTED 0x00 14 #define BT_CSIP_SIRK_TYPE_PLAIN 0x01 15 16 #define BT_CSIP_RELEASE_VALUE 0x01 17 #define BT_CSIP_LOCK_VALUE 0x02 18 19 struct bt_csip_set_sirk { 20 uint8_t type; 21 uint8_t value[BT_CSIP_SET_SIRK_SIZE]; 22 } __packed; 23 24 struct bt_csip_set_coordinator_csis_inst *bt_csip_set_coordinator_csis_inst_by_handle( 25 struct bt_conn *conn, uint16_t start_handle); 26