From bae0dace163eddd6c60963d4cf3267125186fd99 Mon Sep 17 00:00:00 2001 From: Alberto Escolar Piedras Date: Thu, 21 Sep 2023 09:50:56 +0200 Subject: [PATCH] Bluetooth controller nrf: Rename bsim radio hal header Rename the bsim header in preparation for having more simulated targets. Signed-off-by: Alberto Escolar Piedras --- .../controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf5.h | 4 ++-- .../hal/nrf5/radio/{radio_sim_nrfxx.h => radio_sim_nrf52.h} | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/{radio_sim_nrfxx.h => radio_sim_nrf52.h} (100%) diff --git a/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf5.h b/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf5.h index a03e55f519d..9e29ab5f70b 100644 --- a/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf5.h +++ b/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_nrf5.h @@ -15,8 +15,8 @@ #define HAL_RADIO_NS2US_ROUND(ns) ((ns + 500)/1000) /* SoC specific defines */ -#if defined(CONFIG_SOC_SERIES_BSIM_NRFXX) -#include "radio_sim_nrfxx.h" +#if defined(CONFIG_BOARD_NRF52_BSIM) +#include "radio_sim_nrf52.h" #elif defined(CONFIG_SOC_SERIES_NRF51X) #include "radio_nrf51.h" #elif defined(CONFIG_SOC_NRF52805) diff --git a/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_sim_nrfxx.h b/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_sim_nrf52.h similarity index 100% rename from subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_sim_nrfxx.h rename to subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/radio/radio_sim_nrf52.h