From 10b1bd229eb6de6c77fe5bb52529951af55b3596 Mon Sep 17 00:00:00 2001 From: Andrzej Kuros Date: Mon, 23 Dec 2024 09:08:09 +0100 Subject: [PATCH 1/2] manifest: update hal_nordic revision MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit updates revision of hal_nordic to bring the latest changes in the nRF IEEE 802.15.4 driver. Signed-off-by: Andrzej Kuroś --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index 58255875a850..317f9d267ba0 100644 --- a/west.yml +++ b/west.yml @@ -193,7 +193,7 @@ manifest: groups: - hal - name: hal_nordic - revision: fae15426c6b5a1f67362d508cf51b691ae5ab4b4 + revision: c563b0e56dfa7e3915637b12b3428e6de36012be path: modules/hal/nordic groups: - hal From 199b5b48b676261fa27137c1fa0f38fa560e2b4f Mon Sep 17 00:00:00 2001 From: Andrzej Kuros Date: Fri, 3 Jan 2025 08:52:24 +0100 Subject: [PATCH 2/2] modules: hal_nordic: remove setting of NRF_802154_USE_RAW_API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The non-raw API has been removed from the nRF 802.15.4 Radio Driver. There is no need to set NRF_802154_USE_RAW_API macro anymore in CMakeLists.txt that integrates the driver. Signed-off-by: Andrzej Kuroś --- modules/hal_nordic/nrf_802154/CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/hal_nordic/nrf_802154/CMakeLists.txt b/modules/hal_nordic/nrf_802154/CMakeLists.txt index 30c4c237a049..1fc5c85ec0b1 100644 --- a/modules/hal_nordic/nrf_802154/CMakeLists.txt +++ b/modules/hal_nordic/nrf_802154/CMakeLists.txt @@ -33,9 +33,6 @@ endif () target_compile_definitions(zephyr-802154-interface INTERFACE - # Radio driver shim layer uses raw api - NRF_802154_USE_RAW_API=1 - # Number of slots containing short addresses of nodes for which # pending data is stored. NRF_802154_PENDING_SHORT_ADDRESSES=${CONFIG_NRF_802154_PENDING_SHORT_ADDRESSES}