1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4config NET_SAMPLE_CODE_RELOCATE
5	bool "Relocate networking code into RAM"
6	select CODE_DATA_RELOCATION
7	help
8	  Relocate networking code into RAM when running the zperf
9	  sample. Can improve performance on platforms with fast code
10	  RAM.
11
12if NET_SAMPLE_CODE_RELOCATE
13
14config NET_SAMPLE_CODE_RAM_NAME
15	string "Networking code RAM location"
16	default "RAM"
17	help
18	  Region to relocate networking code to
19
20endif # NET_SAMPLE_CODE_RELOCATE
21
22if USB_DEVICE_STACK_NEXT
23# Source common USB sample options used to initialize new experimental USB
24# device stack. The scope of these options is limited to USB samples in project
25# tree, you cannot use them in your own application.
26	source "samples/subsys/usb/common/Kconfig.sample_usbd"
27endif
28
29configdefault NRF_WIFI_DATA_HEAP_SIZE
30	default 30000 if NRF_WIFI_ZERO_COPY_TX
31	default 50000
32
33source "Kconfig.zephyr"
34