mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-07 22:42:47 +00:00
Put infrastructure for the following HCI commands/events in place: * LE Set CIG Parameters command * LE Remove CIG command * LE Create CIS command * LE Accept CIS Request command * LE Reject CIS Request command * LE CIS Established event * LE CIS Request event Signed-off-by: Wolfgang Puffitsch <wopu@demant.com>
28 lines
499 B
C
28 lines
499 B
C
/*
|
|
* Copyright (c) 2020 Demant
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr.h>
|
|
|
|
#define BT_DBG_ENABLED IS_ENABLED(CONFIG_BT_DEBUG_HCI_DRIVER)
|
|
#define LOG_MODULE_NAME bt_ctlr_ull_peripheral_iso
|
|
#include "common/log.h"
|
|
#include "hal/debug.h"
|
|
|
|
uint8_t ll_cis_accept(uint16_t handle)
|
|
{
|
|
ARG_UNUSED(handle);
|
|
|
|
return BT_HCI_ERR_CMD_DISALLOWED;
|
|
}
|
|
|
|
uint8_t ll_cis_reject(uint16_t handle, uint8_t reason)
|
|
{
|
|
ARG_UNUSED(handle);
|
|
ARG_UNUSED(reason);
|
|
|
|
return BT_HCI_ERR_CMD_DISALLOWED;
|
|
}
|