Debugging

This guide describes how to debug applications that use the nRF70 Series companion chips.

Software

The scope of this section is limited to the nRF Wi-Fi driver, WPA supplicant and networking stack.

Enable debug features

The nRF Wi-Fi driver, WPA supplicant, and networking stack have debug features that can be enabled to help debug issues.

You can enable debug features by using Zephyr’s configuration Snippets feature.

For example, to build the Wi-Fi: Shell sample for the nRF7002 DK with debugging enabled, run the following commands:

With west

west build -p -b nrf7002dk/nrf5340/cpuapp -S nrf70-debug samples/wifi/shell

With CMake

cmake -GNinja -Bbuild -DBOARD=nrf7002dk/nrf5340/cpuapp -DSNIPPET=nrf70-debug samples/wifi/shell
ninja -C build

Statistics

The nRF Wi-Fi driver, firmware, and networking stack have statistics feature that can be enabled to help debug issues.

You can enable statistics by using the nrf70-debug snippet. See Enable debug features.

Statistics table

Command

Description

Functional area

net stats

Displays statistics for the networking stack, network interfaces, and network protocols.

Data path debugging (Networking stack)

wifi statistics

Displays frame statistics for the nRF Wi-Fi driver.

Data path debugging (nRF Wi-Fi driver)

wifi_util tx_stats <vif_index>

Displays transmit statistics for the nRF Wi-Fi driver.

Data path debugging (nRF Wi-Fi driver TX)

wifi_util rpu_stats all [1]

Displays statistics for the nRF70 firmware (all modules, support for specific modules is also available).

nRF70 firmware debugging (Data and control path)

Note

All statistics, especially data path statistics, must be collected multiple times to see the incremental changes and understand the behavior.