From 416ebcd1d5d70ea4857d53eda86994bb19700e9e Mon Sep 17 00:00:00 2001 From: Prasun Sinha Date: Mon, 24 Mar 2025 19:25:20 +0530 Subject: [PATCH] doc: wifi: Corrections to Regulatory Testing doc [SHEL-3047]: Update Regulatory testing with latest changes and remove errors. Signed-off-by: Prasun Sinha --- .../device_guides/nrf70/power_profiling.rst | 4 +- .../adaptivity_test_procedure.rst | 2 +- .../antenna_gain_compensation.rst | 18 +-- .../band_edge_compensation.rst | 108 +++++++++--------- .../ble_radio_test_for_per_measurements.rst | 2 +- .../regulatory_certification/test_setup.rst | 33 ++++-- .../using_wifi_shell_sample.rst | 2 +- .../wifi_build_instructions.rst | 21 +++- .../wifi_radio_test_for_per_measurements.rst | 10 +- samples/wifi/throughput/README.rst | 2 +- 10 files changed, 110 insertions(+), 92 deletions(-) diff --git a/doc/nrf/app_dev/device_guides/nrf70/power_profiling.rst b/doc/nrf/app_dev/device_guides/nrf70/power_profiling.rst index cc34ee3c5522..7d7c713e78e0 100644 --- a/doc/nrf/app_dev/device_guides/nrf70/power_profiling.rst +++ b/doc/nrf/app_dev/device_guides/nrf70/power_profiling.rst @@ -37,7 +37,7 @@ To measure the power consumption of the nRF7002 DK, complete the following steps .. code-block:: console wifi scan - wifi connect + wifi connect -s -k -p #. Check the connection status using the following Wi-Fi shell command: @@ -59,7 +59,7 @@ To measure the power consumption of the nRF7002 DK, complete the following steps .. code-block:: console wifi scan - wifi connect + wifi connect -s -k -p #. Check the connection status using the following Wi-Fi shell command: diff --git a/doc/nrf/protocols/wifi/regulatory_certification/adaptivity_test_procedure.rst b/doc/nrf/protocols/wifi/regulatory_certification/adaptivity_test_procedure.rst index 28af979f1585..d17d0d48c32e 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/adaptivity_test_procedure.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/adaptivity_test_procedure.rst @@ -66,7 +66,7 @@ The following test procedure is recommended: .. code-block:: bash - wifi connect + wifi connect -s -k -p wifi_util tx_rate 0 6 zperf udp upload 192.168.1.20 5001 20 1k 20M diff --git a/doc/nrf/protocols/wifi/regulatory_certification/antenna_gain_compensation.rst b/doc/nrf/protocols/wifi/regulatory_certification/antenna_gain_compensation.rst index 3857d5c703d4..460e29098562 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/antenna_gain_compensation.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/antenna_gain_compensation.rst @@ -42,24 +42,24 @@ The following table shows an example of how to calculate the Kconfig parameter v +-------------------+---------------------------+----------------------+--------------+--------------+--------------------+ | Bands | Kconfig parameter | Frequency range (MHz)| AntGain (dB) | PCBLoss (dB) | Kconfig value (dB) | +===================+===========================+======================+==============+==============+====================+ -| ANTGAIN_2G | NRF700X_ANT_GAIN_2G | 2402 to 2494 | 3.38 | 0.54 | 3 | +| ANTGAIN_2G | NRF70_ANT_GAIN_2G | 2402 to 2494 | 3.38 | 0.54 | 3 | +-------------------+---------------------------+----------------------+--------------+--------------+--------------------+ -| ANTGAIN_5G_BAND1 | NRF700X_ANT_GAIN_5G_BAND1 | 5150 to 5350 | 2.74 | 1.60 | 2 | +| ANTGAIN_5G_BAND1 | NRF70_ANT_GAIN_5G_BAND1 | 5150 to 5350 | 2.74 | 1.60 | 2 | +-------------------+---------------------------+----------------------+--------------+--------------+--------------------+ -| ANTGAIN_5G_BAND2 | NRF700X_ANT_GAIN_5G_BAND2 | 5470 to 5730 | 2.46 | 1.84 | 1 | +| ANTGAIN_5G_BAND2 | NRF70_ANT_GAIN_5G_BAND2 | 5470 to 5730 | 2.46 | 1.84 | 1 | +-------------------+---------------------------+----------------------+--------------+--------------+--------------------+ -| ANTGAIN_5G_BAND3 | NRF700X_ANT_GAIN_5G_BAND3 | 5730 to 5895 | 1.77 | 1.51 | 1 | +| ANTGAIN_5G_BAND3 | NRF70_ANT_GAIN_5G_BAND3 | 5730 to 5895 | 1.77 | 1.51 | 1 | +-------------------+---------------------------+----------------------+--------------+--------------+--------------------+ Setting antenna gain parameters ******************************* -The Kconfig parameters and their default values are defined in the :file:`/nrf/drivers/wifi/nrf700x/Kconfig` file. +The Kconfig parameters and their default values are defined in the :file:`/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi` file. To compensate for antenna gains, set the following Kconfig parameters in the project :file:`prj.conf` configuration file. -* :kconfig:option:`CONFIG_NRF700X_ANT_GAIN_2G` = ```` -* :kconfig:option:`CONFIG_NRF700X_ANT_GAIN_5G_BAND1` = ```` -* :kconfig:option:`CONFIG_NRF700X_ANT_GAIN_5G_BAND2` = ```` -* :kconfig:option:`CONFIG_NRF700X_ANT_GAIN_5G_BAND3` = ```` +* :kconfig:option:`CONFIG_NRF70_ANT_GAIN_2G` = ```` +* :kconfig:option:`CONFIG_NRF70_ANT_GAIN_5G_BAND1` = ```` +* :kconfig:option:`CONFIG_NRF70_ANT_GAIN_5G_BAND2` = ```` +* :kconfig:option:`CONFIG_NRF70_ANT_GAIN_5G_BAND3` = ```` The Kconfig parameters can also be set in a relevant overlay file or entered as command-line arguments to the CMake build. diff --git a/doc/nrf/protocols/wifi/regulatory_certification/band_edge_compensation.rst b/doc/nrf/protocols/wifi/regulatory_certification/band_edge_compensation.rst index 752797e776c6..3dd48d9dceeb 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/band_edge_compensation.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/band_edge_compensation.rst @@ -40,7 +40,7 @@ When applying backoff, consider the following: * Backoff values also vary based on the frame type, affecting the maximum transmit power. Different backoff values are configured for each frame type. Backoff values, which are expressed in dB, are inputs to the Wi-Fi® firmware driver through Kconfig parameters. -The Kconfig parameters are defined in the :file:`/nrf/drivers/wifi/nrf700x/Kconfig` file. +The Kconfig parameters are defined in the :file:`/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi` file. Set the Kconfig parameter values (which are positive numbers) according to the required backoff in the specific frequency band for the regulatory domain. The default value of the Kconfig parameter is zero. @@ -50,98 +50,98 @@ The following tables show the Kconfig parameters for lower and upper edge backof +---------+-----------+---------------------------------------------------------------+ | Band | Frame type| Kconfig parameter for lower edge backoff | +=========+===========+===============================================================+ -| 2.4 GHz | DSSS | CONFIG_NRF700X_BAND_2G_LOWER_EDGE_BACKOFF_DSSS | +| 2.4 GHz | DSSS | CONFIG_NRF70_BAND_2G_LOWER_EDGE_BACKOFF_DSSS | + +-----------+---------------------------------------------------------------+ -| | HT/V HT | CONFIG_NRF700X_BAND_2G_LOWER_EDGE_BACKOFF_HT | +| | HT/V HT | CONFIG_NRF70_BAND_2G_LOWER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_2G_LOWER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_2G_LOWER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-1 | HT/V HT | CONFIG_NRF700X_BAND_UNII_1_LOWER_EDGE_BACKOFF_HT | +| UNII-1 | HT/V HT | CONFIG_NRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_1_LOWER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-2A | HT/V HT | CONFIG_NRF700X_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HT | +| UNII-2A | HT/V HT | CONFIG_NRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-2C | HT/V HT | CONFIG_NRF700X_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HT | +| UNII-2C | HT/V HT | CONFIG_NRF70_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-3 | HT/V HT | CONFIG_NRF700X_BAND_UNII_3_LOWER_EDGE_BACKOFF_HT | +| UNII-3 | HT/V HT | CONFIG_NRF70_BAND_UNII_3_LOWER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_3_LOWER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_3_LOWER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-4 | HT/V HT | CONFIG_NRF700X_BAND_UNII_4_LOWER_EDGE_BACKOFF_HT | +| UNII-4 | HT/V HT | CONFIG_NRF70_BAND_UNII_4_LOWER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_4_LOWER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_4_LOWER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ +---------+-----------+---------------------------------------------------------------+ | Band | Frame type| Kconfig parameter for upper edge backoff | +=========+===========+===============================================================+ -| 2.4 GHz | DSSS | CONFIG_NRF700X_BAND_2G_UPPER_EDGE_BACKOFF_DSSS | +| 2.4 GHz | DSSS | CONFIG_NRF70_BAND_2G_UPPER_EDGE_BACKOFF_DSSS | + +-----------+---------------------------------------------------------------+ -| | HT/V HT | CONFIG_NRF700X_BAND_2G_UPPER_EDGE_BACKOFF_HT | +| | HT/V HT | CONFIG_NRF70_BAND_2G_UPPER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_2G_UPPER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_2G_UPPER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-1 | HT/V HT | CONFIG_NRF700X_BAND_UNII_1_UPPER_EDGE_BACKOFF_HT | +| UNII-1 | HT/V HT | CONFIG_NRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_1_UPPER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-2A | HT/V HT | CONFIG_NRF700X_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HT | +| UNII-2A | HT/V HT | CONFIG_NRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-2C | HT/V HT | CONFIG_NRF700X_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HT | +| UNII-2C | HT/V HT | CONFIG_NRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-3 | HT/V HT | CONFIG_NRF700X_BAND_UNII_3_UPPER_EDGE_BACKOFF_HT | +| UNII-3 | HT/V HT | CONFIG_NRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_3_UPPER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ -| UNII-4 | HT/V HT | CONFIG_NRF700X_BAND_UNII_4_UPPER_EDGE_BACKOFF_HT | +| UNII-4 | HT/V HT | CONFIG_NRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HT | + +-----------+---------------------------------------------------------------+ -| | HE | CONFIG_NRF700X_BAND_UNII_4_UPPER_EDGE_BACKOFF_HE | +| | HE | CONFIG_NRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HE | +---------+-----------+---------------------------------------------------------------+ Setting band edge parameters **************************** Review if the transmission (TX) power of any band-edge channels requires backoff according to the active regulatory domain. -The Kconfig parameters and their default values are defined in the :file:`/nrf/drivers/wifi/nrf700x/Kconfig` file. +The Kconfig parameters and their default values are defined in the :file:`/zephyr/drivers/wifi/nrf_wifi/Kconfig.nrfwifi` file. If backoff is needed, set the following Kconfig parameters to ```` in the project :file:`prj.conf` configuration file. Kconfig parameters for the lower edge backoff: -* :kconfig:option:`CONFIG_NRF700X_BAND_2G_LOWER_EDGE_BACKOFF_DSSS` -* :kconfig:option:`CONFIG_NRF700X_BAND_2G_LOWER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_2G_LOWER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_1_LOWER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_1_LOWER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_3_LOWER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_3_LOWER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_4_LOWER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_4_LOWER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_2G_LOWER_EDGE_BACKOFF_DSSS` +* :kconfig:option:`CONFIG_NRF70_BAND_2G_LOWER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_2G_LOWER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_3_LOWER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_3_LOWER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_4_LOWER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_4_LOWER_EDGE_BACKOFF_HE` Kconfig parameters for the upper edge backoff: -* :kconfig:option:`CONFIG_NRF700X_BAND_2G_UPPER_EDGE_BACKOFF_DSSS` -* :kconfig:option:`CONFIG_NRF700X_BAND_2G_UPPER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_2G_UPPER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_1_UPPER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_1_UPPER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_3_UPPER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_3_UPPER_EDGE_BACKOFF_HE` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_4_UPPER_EDGE_BACKOFF_HT` -* :kconfig:option:`CONFIG_NRF700X_BAND_UNII_4_UPPER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_2G_UPPER_EDGE_BACKOFF_DSSS` +* :kconfig:option:`CONFIG_NRF70_BAND_2G_UPPER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_2G_UPPER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HE` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HT` +* :kconfig:option:`CONFIG_NRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HE` diff --git a/doc/nrf/protocols/wifi/regulatory_certification/radio_test_short_range_sample/ble_radio_test_for_per_measurements.rst b/doc/nrf/protocols/wifi/regulatory_certification/radio_test_short_range_sample/ble_radio_test_for_per_measurements.rst index a5d39fb8b3e9..88247de746a3 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/radio_test_short_range_sample/ble_radio_test_for_per_measurements.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/radio_test_short_range_sample/ble_radio_test_for_per_measurements.rst @@ -27,7 +27,7 @@ Configure the transmitting device (DK or EK) to transmit 10000 packets (TX trans Record the number of successfully received packets on the receiving device (DK or EK). Repeat as necessary until the count stops incrementing. -RX success count is displayed as ``dsss_crc32_pass_cnt``. +RX success count is displayed as ``Number of packets:``. .. code-block:: shell diff --git a/doc/nrf/protocols/wifi/regulatory_certification/test_setup.rst b/doc/nrf/protocols/wifi/regulatory_certification/test_setup.rst index 2a1fcc111b02..6fa13fbf5eb1 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/test_setup.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/test_setup.rst @@ -12,7 +12,7 @@ An overview of software test samples, hardware development platforms, test modes Test samples ************ -You can use the software test samples available in the |NCS| can be used for regulatory testing of the nRF70 Series devices. +You can use the software test samples available in the |NCS| for regulatory testing of the nRF70 Series devices. Wi-Fi Radio test sample ======================= @@ -67,7 +67,8 @@ Use the nRF70 Series hardware development platforms for regulatory testing. The nRF70 Series includes the following platforms: * nRF7002 :term:`Development Kit (DK)` – A single-board solution featuring the Wi-Fi 6 capabilities of the nRF7002 companion IC and the nRF5340 :term:`System on Chip (SoC)`. -* nRF7002 :term:`Evaluation Kit (EK)` – A shield board used for evaluating the nRF7002 companion IC. The EK is compatible with the nRF52840, nRF5340, and nRF91 DKs through its Arduino connector. +* nRF7002 :term:`Evaluation Kit (EK)` – A shield board used for evaluating the nRF7002 companion IC. + The EK is compatible with the nRF52840, nRF5340, and nRF91 DKs through its Arduino connector. For hardware information, see the user guides `nRF7002 DK Hardware`_ and `nRF7002 EK Hardware`_. For more information on the boards in nRF Connect for Desktop, see :ref:`Getting started with nRF70 Series `. @@ -138,7 +139,8 @@ This describes the flashing, running, and use of the appropriate console ports w Programming firmware in the nRF7002 setup ========================================= -Before you begin, make sure you have the ``nrfjprog`` that is part of the archived `nRF Command Line Tools`_. +Before you begin, make sure you have the nRF Util tool installed on your computer. +See `Installing nRF Util`_ and `Installing and upgrading nRF Util commands`_ for instructions on how to install the nRF Util device utility. To program firmware in the nRF7002 DK or EK setup, complete the following steps. @@ -149,7 +151,7 @@ To program firmware in the nRF7002 DK or EK setup, complete the following steps. .. code-block:: console - $ nrfjprog --recover + $ nrfutil device recover .. note:: Firmware loading returns an error if the read back protection mechanism is enabled. @@ -160,22 +162,22 @@ To program firmware in the nRF7002 DK or EK setup, complete the following steps. .. code-block:: console - $ nrfjprog --program merged.hex -f NRF53 --coprocessor CP_APPLICATION --verify --chiperase –-reset + $ nrfutil device program --firmware merged.hex --core Application --options chip_erase_mode=ERASE_ALL,reset=RESET_SYSTEM * For Station (STA), Shell, and stand-alone Wi-Fi Radio test samples: .. code-block:: console - $ nrfjprog --program zephyr.hex -f NRF53 --coprocessor CP_APPLICATION --verify --chiperase –-reset + $ nrfutil device program --firmware merged.hex --core Application --options chip_erase_mode=ERASE_ALL,reset=RESET_SYSTEM #. Program the relevant hex (binaries) to the network core on the nRF7002 DK: .. code-block:: console - $ nrfjprog --program merged_CPUNET.hex -f NRF53 --coprocessor CP_NETWORK --verify --chiperase --reset + $ nrfutil device program --firmware merged_CPUNET.hex --core Network --options chip_erase_mode=ERASE_ALL,reset=RESET_SYSTEM #. To run the firmware on the nRF7002 DK or EK, reset the device. - You can press the reset button, use the reset command in nrfjprog, or power cycle the development kit. + You can press the **RESET** button, use the ``reset`` command in nRF Util, or power cycle the development kit. .. note:: Set the baud rate to 115,200 bps. @@ -192,16 +194,23 @@ To choose the correct COM port to interact with the network core on the nRF7002 .. code-block:: console - $ nrfjprog --com + $ nrfutil device list Typically, VCOM0 is connected to the nRF5340 network core running a Radio test (short-range) and VCOM1 is connected to the nRF5340 application core running a Wi-Fi Radio test. Verify the mapping of the COM ports based on the available commands for each port, see Short-range Radio test port, Wi-Fi Radio test port, and the following example: .. code-block:: console - $ nrfjprog --com - 1050771296 /dev/ttyACM0 VCOM0 // This is for Radio Test, note baud rate is 115200bps - 1050771296 /dev/ttyACM1 VCOM1 // This is for Wi-Fi Radio Test, note baud rate is 115200bps + $ nrfutil device list + 1050753610 + product J-Link + board version PCA10143 + ports /dev/ttyACM4, vcom: 0 // This is for Radio Test, note baud rate is 115200bps + /dev/ttyACM5, vcom: 1 // This is for Wi-Fi Radio Test, note baud rate is 115200bps + traits devkit, jlink, seggerUsb, serialPorts, usb + + Found 1 supported device(s) + .. figure:: images/sr_radio_test_port.png :alt: Short-range Radio test port diff --git a/doc/nrf/protocols/wifi/regulatory_certification/using_wifi_shell_sample.rst b/doc/nrf/protocols/wifi/regulatory_certification/using_wifi_shell_sample.rst index 202a95991369..cccc0d69830e 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/using_wifi_shell_sample.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/using_wifi_shell_sample.rst @@ -36,7 +36,7 @@ The following commands lets you scan, connect, and ping to a desired network or .. code-block:: shell - uart:~$ wifi connect + uart:~$ wifi connect -s -k -p #. Query the status of the connection: diff --git a/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_build_instructions.rst b/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_build_instructions.rst index 358750d02705..2702b675f0e2 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_build_instructions.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_build_instructions.rst @@ -18,15 +18,24 @@ Combined build for Radio test and Wi-Fi Radio test ************************************************** The combined build configuration builds the binary files for the Wi-Fi Radio test that resides in the application core and the Radio test (short-range) that resides in the network core. -In the :file:`/nrf/samples/wifi/radio_test/prj.conf` file, set :kconfig:option:`CONFIG_BOARD_ENABLE_CPUNET` = ``y``. +In the :file:`/nrf/samples/wifi/radio_test/multi_domain/prj.conf` file, set :kconfig:option:`CONFIG_SUPPORT_NETCORE_PERIPHERAL_RADIO_TEST` = ``y``. .. code-block:: shell - $ west build -p -b nrf7002dk_nrf5340_cpuapp (DK build) - $ west build -p -b nrf5340dk_nrf5340_cpuapp -- -DSHIELD= nrf7002ek (EK build) + $ west build -p -b nrf7002dk/nrf5340/cpuapp (DK build) The following HEX files are generated: -* Combined HEX file: :file:`build/zephyr/merged_domains.hex` -* APP core HEX file: :file:`build/zephyr/merged.hex` -* NET core HEX file: :file:`build/peripheral_radio_test/zephyr/merged_CPUNET.hex` +* APP core HEX file: :file:`/build/merged.hex` +* NET core HEX file: :file:`/build/merged_CPUNET.hex` + +The nRF5340 DK + nRF7002 EK cannot be used in Wi-Fi and short-range combined mode. Use it for either Wi-Fi or short-range testing only. +The **IOVDD** and **BUCKEN GPIO** (**P1.00** and **P1.01**) on the nRF5340 DK were originally meant for the UART1 interface and routed through the IMCU debugger chip. +These pins are reused for the nRF7002 EK. +Consequently, UART1, used for the short-range communication console, will not function and must be disabled. + +.. note:: + + It is recommended to open solder bridges **SB29** and **SB30** on the nRF5340 DK when using it with the nRF7002 EK shield. + If solder bridges **SB29** and **SB30** are open, UART1 functionality will be disabled, preventing short-range (network core) console output. + Therefore, the modified nRF5340 DK along with the nRF7002 EK must be used for Wi-Fi (application core) testing. diff --git a/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_radio_test_for_per_measurements.rst b/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_radio_test_for_per_measurements.rst index 7f535395134f..3e133a51796a 100644 --- a/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_radio_test_for_per_measurements.rst +++ b/doc/nrf/protocols/wifi/regulatory_certification/wifi_radio_test_sample/wifi_radio_test_for_per_measurements.rst @@ -29,7 +29,7 @@ Configure the transmitting DK or EK to send 10,000 packets (TX transmit count) w uart:~$ wifi_radio_test init 1 uart:~$ wifi_radio_test tx_pkt_tput_mode 0 - uart:~$ wifi_radio_test tx_pkt_preamble 1 + uart:~$ wifi_radio_test tx_pkt_preamble 0 uart:~$ wifi_radio_test tx_pkt_rate 1 uart:~$ wifi_radio_test tx_pkt_len 1024 uart:~$ wifi_radio_test tx_pkt_gap 200 @@ -135,7 +135,7 @@ To prevent lengthy transmission times, keep the interpacket gap at minimum 200 Record the number of successfully received packets on the receiving DK or EK. Repeat as necessary until the count stops incrementing. -The RX success count is displayed as ofdm_crc32_pass_cnt. +The RX success count is displayed as ``ofdm_crc32_pass_cnt``. .. code-block:: shell @@ -185,7 +185,7 @@ To prevent lengthy transmission times, keep the interpacket gap at minimum 200 Record the number of successfully received packets on the receiving DK or EK. Repeat as necessary until the count stops incrementing. -The RX success count is displayed as ``dsss_crc32_pass_cnt``. +The RX success count is displayed as ``ofdm_crc32_pass_cnt``. .. code-block:: shell @@ -234,7 +234,7 @@ To prevent lengthy transmission times, keep the interpacket gap at minimum 200 Record the number of successfully received packets on the receiving DK or EK. Repeat as necessary until the count stops incrementing. -The RX success count is displayed as ``dsss_crc32_pass_cnt``. +The RX success count is displayed as ``ofdm_crc32_pass_cnt``. .. code-block:: shell @@ -284,7 +284,7 @@ To prevent lengthy transmission times, keep the interpacket gap at minimum 200 Record the number of successfully received packets on the receiving DK or EK. Repeat as necessary until the count stops incrementing. -The RX success count is displayed as ``dsss_crc32_pass_cnt``. +The RX success count is displayed as ``ofdm_crc32_pass_cnt``. .. code-block:: shell diff --git a/samples/wifi/throughput/README.rst b/samples/wifi/throughput/README.rst index 11ae759213ce..62d327c9663f 100644 --- a/samples/wifi/throughput/README.rst +++ b/samples/wifi/throughput/README.rst @@ -162,7 +162,7 @@ Testing .. code-block:: console - wifi connect + wifi connect -s -k -p ```` is the SSID of the network you want to connect to, and ```` is its passphrase.