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.
This commit is contained in:
Mariusz Skamra
2024-02-23 14:50:28 +01:00
committed by Łukasz Rymanowski
parent adfa1b8127
commit c102b8b246
+10
View File
@@ -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)
{
}