Bluetooth: controller: hci: Add HCI_Set_Connectionless_CTE_TX_Enable cmd
Add implementation of HCI_Set_Connecitonless_CTE_TX_Enable command to HCI. Add scratch implementation of command handling functions to controller. Signed-off-by: Piotr Pryga <piotr.pryga@nordicsemi.no>
This commit is contained in:
parent
9d711d6e09
commit
f36b7a8732
4 changed files with 45 additions and 0 deletions
|
@ -1464,6 +1464,12 @@ struct bt_hci_cp_le_set_privacy_mode {
|
|||
uint8_t mode;
|
||||
} __packed;
|
||||
|
||||
#define BT_HCI_OP_LE_SET_CL_CTE_TX_ENABLE BT_OP(BT_OGF_LE, 0x0052)
|
||||
struct bt_hci_cp_le_set_cl_cte_tx_enable {
|
||||
uint8_t handle;
|
||||
uint8_t cte_enable;
|
||||
} __packed;
|
||||
|
||||
/* Min and max Constant Tone Extension length in 8us units */
|
||||
#define BT_HCI_LE_CTE_LEN_MIN 0x2
|
||||
#define BT_HCI_LE_CTE_LEN_MAX 0x14
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue