<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125283/wi-fi-throughput-when-device-is-in-ap-mode</link><description>Hi 
 I noticed nordic provides Wi-Fi: Throughput to evaluate the throughput when device is working in STA mode. 
 
 If I want to evaluate the device in AP mode, is there any samples? 
 Thanks!</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 05 Nov 2025 15:34:03 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125283/wi-fi-throughput-when-device-is-in-ap-mode" /><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/553470?ContentTypeID=1</link><pubDate>Wed, 05 Nov 2025 15:34:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5c2c1e96-77be-4b1f-bd4f-179463c63ac7</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Here are some configs that have been used for this in the past:&lt;br /&gt;&lt;br /&gt;Sta compilation command - nrf/samples/wifi/shell&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;west build -p -b nrf7002dk/nrf5340/cpuapp -- -DEXTRA_CONF_FILE=overlay-zperf.conf -DCONFIG_NET_PKT_BUF_TX_DATA_POOL_SIZE=20000 -DCONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=90000 -DCONFIG_NRF70_RX_NUM_BUFS=64&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;cat overlay-zperf.conf&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; 
CONFIG_NET_ZPERF=y
CONFIG_NET_ZPERF_SERVER=y
CONFIG_ZVFS_OPEN_MAX=20
# Zperf TCP=6, UDP=2, Others=1
CONFIG_NET_SOCKETS_POLL_MAX=20
# Sockets: select + poll take up more stack
CONFIG_MAIN_STACK_SIZE=5200
CONFIG_SHELL_STACK_SIZE=5200
CONFIG_NET_MGMT_EVENT_STACK_SIZE=4600

# Optimized networking settings for performance
CONFIG_NET_PKT_RX_COUNT=64
CONFIG_NET_PKT_TX_COUNT=8
CONFIG_NET_BUF_RX_COUNT=64
CONFIG_NET_BUF_TX_COUNT=16
CONFIG_HEAP_MEM_POOL_SIZE=40144
CONFIG_NRF_WIFI_CTRL_HEAP_SIZE=20000
CONFIG_NRF_WIFI_DATA_HEAP_SIZE=180000
CONFIG_NRF70_QSPI_LOW_POWER=n
# To enable optimization configuration options
CONFIG_PICOLIBC_USE_MODULE=y
CONFIG_SPEED_OPTIMIZATIONS=y

# Necessary for zperf_tcp_receiver.c
CONFIG_NET_CONFIG_SETTINGS=y
CONFIG_NET_CONFIG_INIT_TIMEOUT=0

# Zephyr NET Connection Manager Connectivity layer.
CONFIG_NET_CONNECTION_MANAGER=n

# Consumes more memory
CONFIG_WIFI_CREDENTIALS=n
CONFIG_FLASH=n
CONFIG_NVS=n
CONFIG_SETTINGS=n
CONFIG_NRF70_UTIL=y

# Disable rate limiting to avoid log flooding (default is drop)
CONFIG_LOG_RATELIMIT=n
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;SAP compilation command nrf/samples/wifi/shell&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;west build -p -b nrf7002dk/nrf5340/cpuapp -- -DCONFIG_NET_DHCPV4_SERVER=y -DCONFIG_NET_ZPERF_SERVER=y  -DCONFIG_NET_PKT_BUF_TX_DATA_POOL_SIZE=90000 -DCONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=13000 -DOVERLAY_CONFIG=overlay-sap.conf -DCONFIG_NRF70_RX_NUM_BUFS=16&lt;/pre&gt;cat overlay-sap.conf&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_NRF70_AP_MODE=y
CONFIG_WIFI_NM_WPA_SUPPLICANT_AP=y

CONFIG_NET_ZPERF=y
CONFIG_NET_ZPERF_SERVER=y
CONFIG_ZVFS_OPEN_MAX=16
# Optimized networking settings for performance
CONFIG_NET_PKT_RX_COUNT=8
CONFIG_NET_PKT_TX_COUNT=64
CONFIG_NET_BUF_RX_COUNT=8
CONFIG_NET_BUF_TX_COUNT=128
CONFIG_HEAP_MEM_POOL_SIZE=43000
CONFIG_NRF_WIFI_CTRL_HEAP_SIZE=20000
CONFIG_NRF_WIFI_DATA_HEAP_SIZE=180000
CONFIG_NRF70_QSPI_LOW_POWER=n
CONFIG_NET_ZPERF_MAX_PACKET_SIZE=1500

# Necessary for zperf_tcp_receiver.c
CONFIG_NET_CONFIG_SETTINGS=y
CONFIG_NET_CONFIG_INIT_TIMEOUT=0

# Zephyr NET Connection Manager Connectivity layer.
CONFIG_NET_CONNECTION_MANAGER=n

# Consumes more memory
CONFIG_WIFI_CREDENTIALS=n
CONFIG_FLASH=n
CONFIG_NVS=n
CONFIG_SETTINGS=n

# IP is mandatory for successful STA connection
CONFIG_NET_CONFIG_MY_IPV4_ADDR=&amp;quot;192.168.1.1&amp;quot;
CONFIG_NET_CONFIG_MY_IPV4_NETMASK=&amp;quot;255.255.255.0&amp;quot;
CONFIG_NET_CONFIG_MY_IPV4_GW=&amp;quot;192.168.1.1&amp;quot;

# Disable DHCPv4 client
CONFIG_NET_DHCPV4=n
# Enable DHCPv4 server
CONFIG_NET_DHCPV4_SERVER=y

# Temporarily enable FS support so that linking succeeds.
CONFIG_FILE_SYSTEM=y

CONFIG_MBEDTLS_HEAP_SIZE=1024
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;u&gt;Zperf commands&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;STA- UDP-RX- &lt;code&gt;zperf udp download 8001&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;SAP- UDP-TX - &lt;code&gt;zperf udp upload 192.168.1.2 8001 10 1472 20M&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/553363?ContentTypeID=1</link><pubDate>Wed, 05 Nov 2025 02:57:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1692070d-bcba-43d8-ab65-1eff06be525f</guid><dc:creator>Ziyao Zhou</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Could you give me more details? How could we use the DK in AP mode? Does it simply turn on&amp;nbsp; CONFIG_NRF70_AP_MODE = y in the project config?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#
# Copyright (c) 2023 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
CONFIG_WIFI=y
CONFIG_WIFI_NRF70=y

# WPA supplicant
CONFIG_WIFI_NM_WPA_SUPPLICANT=y
CONFIG_NET_L2_WIFI_SHELL=y

CONFIG_NET_ZPERF=y
CONFIG_NET_ZPERF_SERVER=y

# Networking
CONFIG_NETWORKING=y
CONFIG_NET_SOCKETS=y
CONFIG_NET_LOG=y
CONFIG_NET_IPV6=y
CONFIG_NET_IPV4=y
CONFIG_NET_UDP=y
CONFIG_NET_TCP=y
CONFIG_NET_DHCPV4=y
CONFIG_DNS_RESOLVER=y

CONFIG_NET_STATISTICS=y
CONFIG_NET_STATISTICS_WIFI=y
CONFIG_NET_STATISTICS_USER_API=y

CONFIG_NET_PKT_RX_COUNT=8
CONFIG_NET_PKT_TX_COUNT=8

# Below section is the primary contributor to SRAM and is currently
# tuned for performance, but this will be revisited in the future.
CONFIG_NET_BUF_RX_COUNT=16
CONFIG_NET_BUF_TX_COUNT=16
CONFIG_NRF70_RX_NUM_BUFS=16
CONFIG_NRF70_MAX_TX_AGGREGATION=4
CONFIG_NET_TC_TX_COUNT=1

CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT=4
CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT=5
CONFIG_NET_MAX_CONTEXTS=5
CONFIG_NET_CONTEXT_SYNC_RECV=y

CONFIG_INIT_STACKS=y

CONFIG_NET_L2_ETHERNET=y
CONFIG_NET_SHELL=y
CONFIG_NET_SOCKETS_POLL_MAX=12

# Memories
CONFIG_MAIN_STACK_SIZE=5200
CONFIG_SHELL_STACK_SIZE=5200
CONFIG_NET_TX_STACK_SIZE=4096
CONFIG_NET_RX_STACK_SIZE=4096

# Debugging
CONFIG_STACK_SENTINEL=y
CONFIG_DEBUG_COREDUMP=y
CONFIG_DEBUG_COREDUMP_BACKEND_LOGGING=y
CONFIG_DEBUG_COREDUMP_MEMORY_DUMP_MIN=y
CONFIG_SHELL_CMDS_RESIZE=n
#CONFIG_DEBUG=y
CONFIG_WIFI_NM_WPA_SUPPLICANT_LOG_LEVEL_INF=y

# Kernel options
CONFIG_ENTROPY_GENERATOR=y

# Logging
CONFIG_LOG=y
CONFIG_PRINTK=y
CONFIG_SHELL=y
CONFIG_SHELL_GETOPT=y
CONFIG_DEVICE_SHELL=y
CONFIG_POSIX_TIMERS=y
CONFIG_DATE_SHELL=y
CONFIG_NET_CONFIG_AUTO_INIT=n

CONFIG_WIFI_CREDENTIALS=y
CONFIG_FLASH=y
CONFIG_FLASH_PAGE_LAYOUT=y
CONFIG_FLASH_MAP=y
CONFIG_NVS=y
CONFIG_SETTINGS=y
CONFIG_SETTINGS_NVS=y

# printing of scan results puts pressure on queues in new locking
# design in net_mgmt. So, use a higher timeout for a crowded
# environment.
CONFIG_NET_MGMT_EVENT_QUEUE_TIMEOUT=5000
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/553334?ContentTypeID=1</link><pubDate>Tue, 04 Nov 2025 15:05:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6485a6b6-7dff-46f8-a406-6273a0ae998b</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hi again,&lt;/p&gt;
&lt;p&gt;So&amp;nbsp;&lt;span&gt;you can use the throughput sample for measuring the AP mode throughputs as well - just use the DK in SoftAP mode and use zperf shell command in the place of iperf (used with the COTS AP + connected PC).&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Elfving&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/553073?ContentTypeID=1</link><pubDate>Sat, 01 Nov 2025 01:30:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b9f6e574-ae81-4e6f-8b3e-633a0f667d37</guid><dc:creator>Ziyao Zhou</dc:creator><description>&lt;p&gt;Thank you!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/553019?ContentTypeID=1</link><pubDate>Fri, 31 Oct 2025 13:06:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5538fb72-285f-4d73-8582-e433dd845b9c</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Ah sorry I guess I overlooked the throughput part of your question. No, I guess this sample doesn&amp;#39;t have an easy way to allow for that.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You could try to modify the sample and add features from the throughput sample. Though I&amp;#39;ll ask the relevant R&amp;amp;D team if they have any other suggestions. I&amp;#39;ll get back to you once I hear from them - presumably next week.&lt;/p&gt;
&lt;p&gt;Regards and have a good week-end,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/552950?ContentTypeID=1</link><pubDate>Fri, 31 Oct 2025 05:48:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b669cab3-41d8-4000-bb1d-e453289d8351</guid><dc:creator>Ziyao Zhou</dc:creator><description>&lt;p&gt;Can this sample evaluate the throuhhput? I didn&amp;#39;t see the&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wi-Fi Throughput when device is in AP mode?</title><link>https://devzone.nordicsemi.com/thread/552730?ContentTypeID=1</link><pubDate>Wed, 29 Oct 2025 10:22:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ac463d86-5dab-4d8c-99f0-3d8200743bf7</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/samples/wifi/softap/README.html#wifi-softap-sample"&gt;Yes, we have this for SoftAP.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>