Bluetooth: controller: Create HCI stubs for CIG/CIS and ISO
Put infrastructure for the following HCI commands/events in place: * LE Read ISO Link Quality command * LE Read ISO TX Sync command * LE Set Host Feature Command Signed-off-by: Asger Munk Nielsen <asmk@oticon.com>
This commit is contained in:
parent
c47c115c28
commit
fbee6cc933
6 changed files with 165 additions and 0 deletions
20
subsys/bluetooth/controller/ll_sw/ll_feat.c
Normal file
20
subsys/bluetooth/controller/ll_sw/ll_feat.c
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
* 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_ll_feat
|
||||
#include "common/log.h"
|
||||
#include "hal/debug.h"
|
||||
|
||||
uint8_t ll_set_host_feature(uint8_t bit_number, uint8_t bit_value)
|
||||
{
|
||||
ARG_UNUSED(bit_number);
|
||||
ARG_UNUSED(bit_value);
|
||||
|
||||
return BT_HCI_ERR_CMD_DISALLOWED;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue