From af7b21c4f875bea26689307daa8e52e9a8e8323c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20Laso=C5=84czyk?= Date: Thu, 5 Sep 2024 11:17:01 +0200 Subject: [PATCH] nrfx: Add support for new 4Mbit symbols in radio in nRF54L15 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There are new symbols for new configuration in nRF54L15. Signed-off-by: Karol Lasończyk --- nrfx/hal/nrf_radio.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nrfx/hal/nrf_radio.h b/nrfx/hal/nrf_radio.h index efe2c89c..5dec8060 100644 --- a/nrfx/hal/nrf_radio.h +++ b/nrfx/hal/nrf_radio.h @@ -466,6 +466,12 @@ typedef enum #endif #if defined(RADIO_MODE_MODE_Nrf_4Mbit0_25) || defined(__NRFX_DOXYGEN__) NRF_RADIO_MODE_NRF_4MBIT_H_0_25 = RADIO_MODE_MODE_Nrf_4Mbit0_25, /*!< 4Mbit/s Nordic proprietary radio mode (BT=0.5/h=0.25). */ +#endif +#if defined(RADIO_MODE_MODE_Nrf_4Mbit_0BT6) || defined(__NRFX_DOXYGEN__) + NRF_RADIO_MODE_NRF_4MBIT_BT_0_6 = RADIO_MODE_MODE_Nrf_4Mbit_0BT6, /*!< 4Mbit/s Nordic proprietary radio mode (BT=0.6/h=0.5). */ +#endif +#if defined(RADIO_MODE_MODE_Nrf_4Mbit_0BT4) || defined(__NRFX_DOXYGEN__) + NRF_RADIO_MODE_NRF_4MBIT_BT_0_4 = RADIO_MODE_MODE_Nrf_4Mbit_0BT4, /*!< 4Mbit/s Nordic proprietary radio mode (BT=0.4/h=0.5). */ #endif NRF_RADIO_MODE_BLE_1MBIT = RADIO_MODE_MODE_Ble_1Mbit, /**< 1 Mbit/s Bluetooth Low Energy. */ #if defined(RADIO_MODE_MODE_Ble_2Mbit) || defined(__NRFX_DOXYGEN__)