<?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>Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/124348/wifi-and-ble-frequency-test</link><description>Hi, 
 I&amp;#39;m trying to combine Wifi and BLE frequency test on nRF7002 DK. I started with radio_test example on nRF SDK 2.9.1 and toolchain 3.0.2. 
 I have added CONFIG_NRF70_RADIO_TEST_COMBO = y to prj.conf as suggested on others tickets. The project is</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 07 Oct 2025 09:54:39 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/124348/wifi-and-ble-frequency-test" /><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550790?ContentTypeID=1</link><pubDate>Tue, 07 Oct 2025 09:54:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fa67dc9b-2fc1-49de-9932-82bf06044f89</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Did you try with the sample I linked and was able to detect it? Can I have a look at your application to see if I can recreate it?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550589?ContentTypeID=1</link><pubDate>Fri, 03 Oct 2025 12:42:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8dd2de06-e644-4e96-8f26-3a6663d849c5</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I ran the code example on my custom board ans on the nrf7002DK but same problem,&amp;nbsp;u&lt;span&gt;nknown USB device -&amp;nbsp;A USB device descriptor request failed for both.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Mallory.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550583?ContentTypeID=1</link><pubDate>Fri, 03 Oct 2025 11:35:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:74f4d910-37bb-4ab0-a4eb-5f2460b34924</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I would recommend that you start with the sample in zephyr/subsys/usb/console and see what they do just to get the USB running on the app core. After this is working you can add the network core&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550552?ContentTypeID=1</link><pubDate>Fri, 03 Oct 2025 07:40:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b9a543c-98ea-4b41-9bef-9fb905deb7bd</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;With&amp;nbsp;nrf-gpio-forwarder, it worked, thanks.&lt;/p&gt;
&lt;p&gt;But now, I want to communicate with the chip using VCOM instead of UART and RTT viewer.&lt;/p&gt;
&lt;p&gt;I think it is possible because D+ and D- are rooted to an USB C port :&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1759476740945v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I want to have log from APP core on VCOM0 and logs from NET core on VCOM1. Here is the code I use for APP core:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;zephyr_udc0: &amp;amp;usbd {
	compatible = &amp;quot;nordic,nrf-usbd&amp;quot;;
	status = &amp;quot;okay&amp;quot;;

	cdc_acm_uart0: cdc_acm_uart0 {
		compatible = &amp;quot;zephyr,cdc-acm-uart&amp;quot;;
		label = &amp;quot;CDC ACM 0&amp;quot;;
	};
 
	cdc_acm_uart1: cdc_acm_uart1 {
		compatible = &amp;quot;zephyr,cdc-acm-uart&amp;quot;;
		label = &amp;quot;CDC ACM 1&amp;quot;;
	};
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;compatible = &amp;quot;nordic,caelimp-nrf5340-cpuapp&amp;quot;;

	chosen {
		zephyr,console = &amp;amp;cdc_acm_uart0;
		zephyr,shell-uart = &amp;amp;cdc_acm_uart0;
		zephyr,uart-mcumgr = &amp;amp;uart0;
		zephyr,bt-mon-uart = &amp;amp;uart0;
		zephyr,bt-c2h-uart = &amp;amp;uart0;
		zephyr,sram = &amp;amp;sram0_image;
		zephyr,flash = &amp;amp;flash0;
		zephyr,code-partition = &amp;amp;slot0_partition;
		zephyr,sram-secure-partition = &amp;amp;sram0_s;
		zephyr,sram-non-secure-partition = &amp;amp;sram0_ns;
		nordic,pm-ext-flash = &amp;amp;mx25l32;
		zephyr,wifi = &amp;amp;wlan;
	};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;# Enable USB subsystem
CONFIG_USB_CDC_ACM=y
CONFIG_CDC_ACM_IAD=y
CONFIG_USB_DEVICE_STACK=y
CONFIG_UART_INTERRUPT_DRIVEN=y 
CONFIG_USB_DEVICE_MANUFACTURER=&amp;quot;4MOD TECHNOLOGY&amp;quot;
CONFIG_USB_DEVICE_PRODUCT=&amp;quot;CAELIMP_9192&amp;quot;
CONFIG_USB_DEVICE_SN=&amp;quot;0001&amp;quot;
CONFIG_USB_CONFIGURATION_STRING_DESC_ENABLE=y
CONFIG_USB_CONFIGURATION_STRING_DESC=&amp;quot;CDC ACM&amp;quot;
CONFIG_USB_DEVICE_VID=0x2804
CONFIG_USB_DEVICE_PID=0x9192
CONFIG_USB_DEVICE_INITIALIZE_AT_BOOT=y
CONFIG_USB_COMPOSITE_DEVICE=y
CONFIG_USB_CDC_ACM_RINGBUF_SIZE=2048
CONFIG_EARLY_CONSOLE=n
CONFIG_UART_USE_RUNTIME_CONFIGURE=n&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;When I plug the USB on my computer, I don&amp;#39;t see the VCOM0 in the connected device area and in the windows manager I have : Unknown USB device -&amp;nbsp;A USB device descriptor request failed.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1759477083743v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;My questions are :&amp;nbsp;&lt;/p&gt;
&lt;p&gt;- Why the board is not reconized ?&lt;/p&gt;
&lt;p&gt;- How to enable it for NET core ?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Mallory.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550548?ContentTypeID=1</link><pubDate>Fri, 03 Oct 2025 07:27:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:305b3b19-1093-46bc-b39a-eaaf4ad261b1</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi&lt;br /&gt;Do you get any output from the netcore with other samples?&lt;/p&gt;
&lt;p&gt;Are you using internal or external clock for the nrf5340? If you are using internal remember that you need to set the clock config in the .config for the network core. You might also need to set&amp;nbsp;CONFIG_BOARD_ENABLE_CPUNET=y on your app core.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Another alternative is that you have forgotten to the following in your overlay&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;gpio_fwd: nrf-gpio-forwarder {
  compatible = &amp;quot;nordic,nrf-gpio-forwarder&amp;quot;;
  status = &amp;quot;okay&amp;quot;;

  uart {
    gpios = &amp;lt;&amp;amp;gpio1 1 0&amp;gt;, &amp;lt;&amp;amp;gpio1 0 0&amp;gt;, &amp;lt;&amp;amp;gpio1 5 0&amp;gt;, &amp;lt;&amp;amp;gpio1 4 0&amp;gt;;
  };
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550246?ContentTypeID=1</link><pubDate>Tue, 30 Sep 2025 15:57:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3ea574d2-b62b-4a8f-a9d5-4c1a10b1d5e4</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;I tried it on a custom board with nrf5340 and nrf7001 but it is not working (nothing on NET core uart0). All the modifications to switch from nrf7002 to nrf7001 have been made and wifi test is working well.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/550213?ContentTypeID=1</link><pubDate>Tue, 30 Sep 2025 13:55:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:42ae4175-c551-467a-9bcd-4ff1b2e81eea</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;And using VCOM ports like with DKs ?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Mallory.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/549963?ContentTypeID=1</link><pubDate>Mon, 29 Sep 2025 07:02:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6a652a37-382e-4c49-a36f-2f0d5bab8bd7</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi!&lt;br /&gt;I would not think it is possible without major work on the application which I would not recommend&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/549917?ContentTypeID=1</link><pubDate>Fri, 26 Sep 2025 15:57:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f61b427-f238-4f61-a68f-6a28a6a39000</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;Ok great it worked, many thanks.&lt;/p&gt;
&lt;p&gt;Another question : is it possible to merge UART from APP core and UART from NET core in order to have only one UART for both ?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Mallory.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/549565?ContentTypeID=1</link><pubDate>Tue, 23 Sep 2025 12:37:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2228ad58-bef1-4f55-a56e-de3ffadd9027</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;With the 3.1 sample you should not need to set the kconfig anymore. just build with west build -b &amp;quot;board&amp;quot; -p -T&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;sample.nrf7002.radio_test_combo .&amp;nbsp;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/549455?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2025 14:27:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3ecf1e08-bb9c-44ec-b441-02a3055d70e6</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;No problem.&lt;/p&gt;
&lt;p&gt;I followaed your recommandations and started a new project based on&amp;nbsp;Wi-Fi: Radio test (Multi domain) with NRF SDK V3.1 and Toolchain V3.1.&lt;/p&gt;
&lt;p&gt;I tried to built the project but&amp;nbsp;CONFIG_NRF70_RADIO_TEST_COMBO is not reconnized&amp;nbsp;:&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f4af.svg" title="100"&gt;&amp;#x1f4af;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt; *  Ex&amp;#233;cution de la t&amp;#226;che : nRF Connect: Build [pristine]: multi_domain/build 

Building multi_domain
west build --build-dir c:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build c:/Documents/4MOD/NORDIC/CAELIMP/multi_domain --pristine --board nrf7002dk/nrf5340/cpuapp --sysbuild -- -DCONF_FILE=&amp;quot;prj.conf&amp;quot;

-- west build: generating a build system
Loading Zephyr module(s) (Zephyr base): sysbuild_default
-- Found Python3: C:/ncs/toolchains/b8b84efebd/opt/bin/python.exe (found suitable version &amp;quot;3.12.4&amp;quot;, minimum required is &amp;quot;3.10&amp;quot;) found components: Interpreter
-- Cache files will be written to: C:/ncs/v3.1.0/zephyr/.cache
-- Found west (found suitable version &amp;quot;1.4.0&amp;quot;, minimum required is &amp;quot;0.14.0&amp;quot;)
-- Board: nrf7002dk, qualifiers: nrf5340/cpuapp
Parsing c:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/Kconfig.sysbuild
Loaded configuration &amp;#39;C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/_sysbuild/empty.conf&amp;#39;
Merged configuration &amp;#39;c:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/sysbuild.conf&amp;#39;
Configuration saved to &amp;#39;C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/zephyr/.config&amp;#39;
Kconfig header saved to &amp;#39;C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/_sysbuild/autoconf.h&amp;#39;
--
   **********************************
   * Running CMake for multi_domain *
   **********************************

Loading Zephyr default modules (Zephyr base).
-- Application: C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain
-- CMake version: 3.21.0
-- Found Python3: C:/ncs/toolchains/b8b84efebd/opt/bin/python.exe (found suitable version &amp;quot;3.12.4&amp;quot;, minimum required is &amp;quot;3.10&amp;quot;) found components: Interpreter
-- Cache files will be written to: C:/ncs/v3.1.0/zephyr/.cache
-- Zephyr version: 4.1.99 (C:/ncs/v3.1.0/zephyr)
-- Found west (found suitable version &amp;quot;1.4.0&amp;quot;, minimum required is &amp;quot;0.14.0&amp;quot;)
-- Board: nrf7002dk, qualifiers: nrf5340/cpuapp
-- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk)
-- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk)
-- Found Dtc: C:/ncs/toolchains/b8b84efebd/opt/bin/dtc.exe (found suitable version &amp;quot;1.4.7&amp;quot;, minimum required is &amp;quot;1.4.6&amp;quot;)
-- Found BOARD.dts: C:/ncs/v3.1.0/zephyr/boards/nordic/nrf7002dk/nrf7002dk_nrf5340_cpuapp.dts
-- Generated zephyr.dts: C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/multi_domain/zephyr/zephyr.dts
-- Generated pickled edt: C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/multi_domain/zephyr/edt.pickle
-- Generated devicetree_generated.h: C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/multi_domain/zephyr/include/generated/zephyr/devicetree_generated.h

warning: MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG_ALLOW_NON_CSPRNG (defined at
C:/ncs/v3.1.0/zephyr/modules/mbedtls\Kconfig.mbedtls:606, modules\mbedtls\Kconfig.mbedtls:606) was
assigned the value &amp;#39;y&amp;#39; but got the value &amp;#39;n&amp;#39;. Check these unsatisfied dependencies:
((MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG &amp;amp;&amp;amp; MBEDTLS_BUILTIN &amp;amp;&amp;amp; MBEDTLS_CFG_FILE = &amp;quot;config-mbedtls.h&amp;quot; &amp;amp;&amp;amp;
MBEDTLS) || (MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG &amp;amp;&amp;amp; MBEDTLS_BUILTIN &amp;amp;&amp;amp; MBEDTLS_CFG_FILE = &amp;quot;config-
mbedtls.h&amp;quot; &amp;amp;&amp;amp; MBEDTLS &amp;amp;&amp;amp; 0)) (=n). See http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_MBED
TLS_PSA_CRYPTO_EXTERNAL_RNG_ALLOW_NON_CSPRNG and/or look up
MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG_ALLOW_NON_CSPRNG in the menuconfig/guiconfig interface. The
Application Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices
sections of the manual might be helpful too.


warning: The choice symbol MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG (defined at
C:/ncs/v3.1.0/zephyr/modules/mbedtls\Kconfig.mbedtls:568, modules\mbedtls\Kconfig.mbedtls:568) was
selected (set =y), but no symbol ended up as the choice selection. See
http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG and/or look
up MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG in the menuconfig/guiconfig interface. The Application
Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of
the manual might be helpful too.


Parsing C:/ncs/v3.1.0/zephyr/Kconfig
C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/prj.conf:40: warning: attempt to assign the value &amp;#39;y&amp;#39; to the undefined symbol NRF70_RADIO_TEST_COMBOLoaded configuration &amp;#39;C:/ncs/v3.1.0/zephyr/boards/nord
ic/nrf7002dk/nrf7002dk_nrf5340_cpuapp_defconfig&amp;#39;
Merged configuration &amp;#39;C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/prj.conf&amp;#39;
Merged configuration &amp;#39;C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/multi_domain/zephyr/.config.sysbuild&amp;#39;


error: Aborting due to Kconfig warnings

CMake Error at C:/ncs/v3.1.0/zephyr/cmake/modules/kconfig.cmake:377 (message):
  command failed with return code: 1
Call Stack (most recent call first):
  C:/ncs/v3.1.0/nrf/cmake/modules/kconfig.cmake:83 (include)
  C:/ncs/v3.1.0/zephyr/cmake/modules/zephyr_default.cmake:131 (include)
  C:/ncs/v3.1.0/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:66 (include)
  C:/ncs/v3.1.0/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
  CMakeLists.txt:9 (find_package)

-- Configuring incomplete, errors occurred!

CMake Error at cmake/modules/sysbuild_extensions.cmake:530 (message):
  CMake configure failed for Zephyr project: multi_domain

  Location: C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain
Call Stack (most recent call first):
  cmake/modules/sysbuild_images.cmake:43 (ExternalZephyrProject_Cmake)
  cmake/modules/sysbuild_default.cmake:21 (include)
  C:/ncs/v3.1.0/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:75 (include)
  C:/ncs/v3.1.0/zephyr/share/zephyr-package/cmake/ZephyrConfig.cmake:92 (include_boilerplate)
  C:/ncs/v3.1.0/zephyr/share/sysbuild-package/cmake/SysbuildConfig.cmake:8 (include)
  template/CMakeLists.txt:10 (find_package)


-- Configuring incomplete, errors occurred!
See also &amp;quot;C:/Documents/4MOD/NORDIC/CAELIMP/multi_domain/build/CMakeFiles/CMakeOutput.log&amp;quot;.
←[91mFATAL ERROR: command exited with status 1: &amp;#39;C:\ncs\toolchains\b8b84efebd\opt\bin\cmake.EXE&amp;#39; -DWEST_PYTHON=C:/ncs/toolchains/b8b84efebd/opt/bin/python.exe &amp;#39;-Bc:\Documents\4MOD\NORDIC\CAELIMP\multi
_domain\build&amp;#39; -GNinja -DBOARD=nrf7002dk/nrf5340/cpuapp -DCONF_FILE=prj.conf &amp;#39;-SC:\ncs\v3.1.0\zephyr\share\sysbuild&amp;#39; &amp;#39;-DAPP_DIR:PATH=c:\Documents\4MOD\NORDIC\CAELIMP\multi_domain&amp;#39;
←[0m
 *  Arr&amp;#234;t du processus de terminal. Code de sortie : 1. 
 *  Le terminal sera r&amp;#233;utilis&amp;#233; par les t&amp;#226;ches, appuyez sur une touche pour le fermer.&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Mallory.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/549451?ContentTypeID=1</link><pubDate>Mon, 22 Sep 2025 13:19:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1208bbc3-d59d-4659-aabe-52a080988421</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Sorry for the delay. My recommendation would be to run this sample on NCS 3.+ as they have made it ready for multidomain out of the box&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/548973?ContentTypeID=1</link><pubDate>Wed, 17 Sep 2025 07:59:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c2e8eeb9-dd93-4451-8c81-3a07936171bb</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;In addition, this are the uart terminal outputs:&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:107px;max-width:951px;" height="107" src="https://devzone.nordicsemi.com/resized-image/__size/1902x214/__key/communityserver-discussions-components-files/4/pastedimage1758095793085v2.png" width="951" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Mallory.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/548761?ContentTypeID=1</link><pubDate>Mon, 15 Sep 2025 13:43:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d2b4f50d-0c4e-486b-a39b-0f9ec525e9e2</guid><dc:creator>MalloryLP</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m starting with this project :&amp;nbsp;&lt;a id="" href="https://docs.nordicsemi.com/bundle/ncs-2.9.1/page/nrf/samples/wifi/radio_test/README.html"&gt;https://docs.nordicsemi.com/bundle/ncs-2.9.1/page/nrf/samples/wifi/radio_test/README.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Noted, switching to SDK V2.9.1 and toolchain V2.9.1 also.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Mallory.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Wifi and BLE frequency test</title><link>https://devzone.nordicsemi.com/thread/548754?ContentTypeID=1</link><pubDate>Mon, 15 Sep 2025 13:15:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ea041f9f-4e5d-4431-ba03-0cceb96b4726</guid><dc:creator>runsiv</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I would also recommend that you change toolchain version so that it matches the version of NCS you are using.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When you tried this, which sample did you use as starting point? You should be using the wifi/radio test sample&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Runar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>