From c102b8b246367033f642f59b00f222d93464e5f3 Mon Sep 17 00:00:00 2001 From: Mariusz Skamra Date: Tue, 23 Jan 2024 08:17:51 +0100 Subject: [PATCH] nimble/drivers/native: Add missing function stubs This fixes unit test compilation error caused by missing ble_phy_tifs_txtx_set() and ble_phy_encrypt_header_mask_set() function stubs used by ble_ll_iso_big.c and ble_ll_isoal.c. --- nimble/drivers/native/src/ble_phy.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nimble/drivers/native/src/ble_phy.c b/nimble/drivers/native/src/ble_phy.c index c38e6c8fc..5969dff1b 100644 --- a/nimble/drivers/native/src/ble_phy.c +++ b/nimble/drivers/native/src/ble_phy.c @@ -347,6 +347,11 @@ ble_phy_encrypt_enable(const uint8_t *key) { } +void +ble_phy_encrypt_header_mask_set(uint8_t mask) +{ +} + void ble_phy_encrypt_iv_set(const uint8_t *iv) { @@ -651,3 +656,8 @@ void ble_phy_rfclk_disable(void) { } + +void +ble_phy_tifs_txtx_set(uint16_t usecs, uint8_t anchor) +{ +}