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

sample: wi-fi: radio_test: Pull in nrf70 bus lib and move FICR code to radio test sample #19232

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions samples/wifi/radio_test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ target_sources(app PRIVATE
src/nrf_wifi_radio_test_main.c
src/nrf_wifi_radio_test_shell.c
src/nrf_wifi_radio_ficr_shell.c
src/ficr_prog.c
)
3 changes: 1 addition & 2 deletions samples/wifi/radio_test/Kconfig.sysbuild
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ menu "Network core configuration"
depends on SUPPORT_NETCORE

config SUPPORT_NETCORE_PERIPHERAL_RADIO_TEST
bool
default y
bool "wi-fi ble radio test combo build"

choice NETCORE
prompt "Netcore image"
Expand Down
2 changes: 1 addition & 1 deletion samples/wifi/radio_test/inc/nrf_wifi_radio_test_shell.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <ctype.h>
#include <host_rpu_sys_if.h>
#include <fmac_structs.h>
#include "rpu_hw_if.h"
#include <zephyr/drivers/wifi/nrf_wifi/bus/rpu_hw_if.h>

struct nrf_wifi_ctx_zep_rt {
struct nrf_wifi_fmac_priv *fmac_priv;
Expand Down
4 changes: 2 additions & 2 deletions samples/wifi/radio_test/sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ tests:
sample.nrf7002.radio_test_combo:
sysbuild: true
build_only: true
extra_args: CONFIG_NRF70_RADIO_TEST_COMBO=y
extra_args: SB_CONFIG_SUPPORT_NETCORE_PERIPHERAL_RADIO_TEST=y
integration_platforms:
- nrf7002dk/nrf5340/cpuapp
platform_allow: nrf7002dk/nrf5340/cpuapp
tags: ci_build sysbuild ci_samples_wifi
sample.nrf5340.radio_test_combo:
sysbuild: true
build_only: true
extra_args: SHIELD=nrf7002ek CONFIG_NRF70_RADIO_TEST_COMBO=y
extra_args: SHIELD=nrf7002ek SB_CONFIG_SUPPORT_NETCORE_PERIPHERAL_RADIO_TEST=y
integration_platforms:
- nrf5340dk/nrf5340/cpuapp
platform_allow: nrf5340dk/nrf5340/cpuapp
Expand Down
Loading
Loading