Skip to content

Commit 4f38e51

Browse files
committed
Add nRF71 Wi-Fi interface files
These will be used to communicate with nRF71 Wi-Fi domain. Signed-off-by: Chaitanya Tata <[email protected]>
1 parent fdd37a9 commit 4f38e51

File tree

6 files changed

+6608
-0
lines changed

6 files changed

+6608
-0
lines changed

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ add_subdirectory_ifdef(CONFIG_GZLL gzll)
2121
add_subdirectory_ifdef(CONFIG_NRF_DM nrf_dm)
2222
add_subdirectory_ifdef(CONFIG_NRF_FUEL_GAUGE nrf_fuel_gauge)
2323
add_subdirectory_ifdef(CONFIG_SW_CODEC_LC3_T2_SOFTWARE lc3)
24+
add_subdirectory_ifdef(CONFIG_NRF71_WIFI nrf71_wifi)

Kconfig.nrfxlib

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ rsource "gzll/Kconfig"
1717
rsource "nrf_dm/Kconfig"
1818
rsource "lc3/Kconfig"
1919
rsource "nrf_fuel_gauge/Kconfig"
20+
rsource "nrf71_wifi/Kconfig"
2021

2122
endmenu

nrf71_wifi/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
zephyr_include_directories(include)

nrf71_wifi/Kconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
menu "nrf71_Wi-Fi firmware interface library"
7+
8+
config NRF71_WIFI
9+
bool
10+
default y if NRF71_ON_IPC
11+
12+
endmenu

0 commit comments

Comments
 (0)