Bluetooth: controller: Implement LE Set Host Feature Command
Added implementation of HCI LE Set Host Feature command. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
This commit is contained in:
parent
ed59ceba62
commit
32d9b68944
7 changed files with 72 additions and 14 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018-2019 Nordic Semiconductor ASA
|
||||
* Copyright (c) 2018-2021 Nordic Semiconductor ASA
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
@ -239,6 +239,11 @@ struct ll_conn *ll_connected_get(uint16_t handle)
|
|||
return conn;
|
||||
}
|
||||
|
||||
uint16_t ll_conn_free_count_get(void)
|
||||
{
|
||||
return mem_free_count_get(conn_free);
|
||||
}
|
||||
|
||||
void *ll_tx_mem_acquire(void)
|
||||
{
|
||||
return mem_acquire(&mem_conn_tx.free);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue