-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: wifi: nrf_wifi: reduce config overrides
Reduce the number of config overrides needed for the various testcases by only enabling the options if needed in the first place. Signed-off-by: Jordan Yates <jordan@embeint.com>
- Loading branch information
1 parent
6ff8e23
commit 70b41da
Showing
3 changed files
with
42 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# | ||
# Copyright (c) 2025 Embeint Inc | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
|
||
if !CONFIG_WIFI_USAGE_MODE_SCAN_ONLY | ||
|
||
configdefault NET_SOCKETS | ||
default y | ||
configdefault NET_LOG | ||
default y | ||
configdefault NET_IPV6 | ||
default y | ||
configdefault NET_IPV4 | ||
default y | ||
configdefault NET_UDP | ||
default y | ||
configdefault NET_TCP | ||
default y | ||
configdefault NET_DHCPV4 | ||
default y | ||
configdefault DNS_RESOLVER | ||
default y | ||
|
||
configdefault NET_STATISTICS | ||
default y | ||
configdefault NET_STATISTICS_WIFI | ||
default y | ||
configdefault NET_STATISTICS_USER_API | ||
default y | ||
|
||
configdefault NET_PKT_RX_COUNT | ||
default 8 | ||
configdefault NET_PKT_TX_COUNT | ||
default 8 | ||
|
||
endif # !CONFIG_WIFI_USAGE_MODE_SCAN_ONLY | ||
|
||
source "Kconfig.zephyr" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters