Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace STRINGIFY with STR and pull fix for op_mode check #46

Merged
merged 2 commits into from
Feb 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nrf70_bm_lib/source/radio_test/nrf70_bm_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion nrf70_bm_lib/source/system/nrf70_bm_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down