From e716491282bd6c9485eef64764eff354364e3ac4 Mon Sep 17 00:00:00 2001 From: Sachin D Kulkarni Date: Mon, 17 Feb 2025 18:25:51 +0530 Subject: [PATCH 1/2] Replace STRINGIFY with STR Replace usage of zephyr specific STRINGIFY with OS agnostic STR. Signed-off-by: Sachin D Kulkarni --- nrf70_bm_lib/source/radio_test/nrf70_bm_core.c | 2 +- nrf70_bm_lib/source/system/nrf70_bm_core.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nrf70_bm_lib/source/radio_test/nrf70_bm_core.c b/nrf70_bm_lib/source/radio_test/nrf70_bm_core.c index eea436a..531f283 100644 --- a/nrf70_bm_lib/source/radio_test/nrf70_bm_core.c +++ b/nrf70_bm_lib/source/radio_test/nrf70_bm_core.c @@ -89,7 +89,7 @@ int nrf70_bm_rt_fmac_init(void) &tx_pwr_ctrl_params, &tx_pwr_ceil_params, &board_params, - STRINGIFY(CONFIG_NRF70_REG_DOMAIN)); + STR(CONFIG_NRF70_REG_DOMAIN)); if (status != NRF_WIFI_STATUS_SUCCESS) { NRF70_LOG_ERR("Failed to initialize device\n"); goto deinit; diff --git a/nrf70_bm_lib/source/system/nrf70_bm_core.c b/nrf70_bm_lib/source/system/nrf70_bm_core.c index a30f1ea..837c0bf 100644 --- a/nrf70_bm_lib/source/system/nrf70_bm_core.c +++ b/nrf70_bm_lib/source/system/nrf70_bm_core.c @@ -390,7 +390,7 @@ int nrf70_bm_sys_fmac_init(void) &tx_pwr_ctrl_params, &tx_pwr_ceil_params, &board_params, - STRINGIFY(CONFIG_NRF70_REG_DOMAIN)); + STR(CONFIG_NRF70_REG_DOMAIN)); if (status != NRF_WIFI_STATUS_SUCCESS) { NRF70_LOG_ERR("Failed to initialize device\n"); goto deinit; From 12294e0f81e29c09bebb6890c9335e43b6c7c6d9 Mon Sep 17 00:00:00 2001 From: Sachin D Kulkarni Date: Mon, 17 Feb 2025 18:37:55 +0530 Subject: [PATCH 2/2] manifest: Pull fix for op_mode check Pull in fix for checking that APIs are called in appropriate operational modes. Signed-off-by: Sachin D Kulkarni --- west.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/west.yml b/west.yml index c405a6f..f04274e 100644 --- a/west.yml +++ b/west.yml @@ -29,7 +29,7 @@ manifest: # nRF70 Wi-Fi OSAL library - name: nrf_wifi repo-path: nrf_wifi - revision: 36262fa1a3305b297a6c9fefedd84106ad162e0e + revision: a4e0a470fffdead2af5bcd63eac050b6614a7281 path: modules/lib/nrf_wifi # nRF70 Wi-Fi firmware blobs (without west blobs fetch) - name: nrfxlib