<?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 SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125583/wifi-scan-cannot-build-by-using-nrf9160</link><description>Hi Team, 
 I would like to interface the nrf9160 with nrf7001 by using the SPI. While building the WIFI-Scan example by using SDK 3.1.1. Even by using WIFI-shell example these both are the cannot able to build. Please guide me step by step how can we</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 25 Nov 2025 08:49:45 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125583/wifi-scan-cannot-build-by-using-nrf9160" /><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/555337?ContentTypeID=1</link><pubDate>Tue, 25 Nov 2025 08:49:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8d530615-8ba5-4fc3-9575-3e1ff56c4c8d</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hello Jagadish,&lt;/p&gt;
&lt;p&gt;Those log lines are all symptoms of the same root problem: the nRF7002 is not responding over the SPI/QSPI bus, so the Wi‑Fi driver cannot bring the radio (“RPU”) up, and the network interface never reaches UP state.&lt;/p&gt;
&lt;p&gt;Line by line, in plain language:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;wifi_nrf_bus: SPIM spi@b000: freq = 8 MHz
wifi_nrf_bus: SPIM spi@b000: latency = 0
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The Wi‑Fi driver has configured the SPI peripheral (&lt;code&gt;spi@b000&lt;/code&gt;) and is about to talk to the nRF7002.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;RPU wakeup write ACK failed even after 10ms
Error: RDSR2 failed
&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;The host writes a “wake‑up” command to the nRF7002 and waits for an ACK. None arrives within 10 ms.&lt;/li&gt;
&lt;li&gt;Then it tries to read the RDSR2 status register over QSPI/SPI (this uses the &lt;code&gt;qspi_RDSR2&lt;/code&gt; helper in the bus layer), and that read also fails, so the driver prints &lt;code&gt;RDSR2 failed&lt;/code&gt;.&lt;a href="https://docs.nordicsemi.com/bundle/zephyr-apis-latest/page/qspi_if_8h.html"&gt;[qspi_if]&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;From multiple DevZone cases, this almost always indicates a &lt;strong&gt;hardware / low‑level connection problem&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;wrong or unstable power (VBAT / VDDIO too low or not sequenced correctly)&lt;/li&gt;
&lt;li&gt;SPI/QSPI lines not wired as expected (MOSI/MISO/CLK/CS, reset, BUCKEN, IOVDD)&lt;/li&gt;
&lt;li&gt;shield/board not seated or bad cable, etc.&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/122285/nrf7002-with-nrf54-custom-board-issues/539906"&gt;[nrf54 custom RDSR2]&lt;/a&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/122776/wifi-shell-scan-sta-ap-sample-fails-on-v3-0-2-for-nrf7002ek-with-external-host-stm32-rdsr2-failed-error/542172"&gt;[RDSR2 Nucleo case]&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;zep_shim_bus_qspi_dev_add: RPU enable failed with error -1
nrf_wifi_bus_qspi_dev_add: nrf_wifi_osal_bus_qspi_dev_add failed
nrf_wifi_bal_dev_add: Bus dev_add failed
nrf_wifi_sys_hal_dev_add: nrf_wifi_bal_dev_add failed
nrf_wifi_sys_fmac_dev_add: nrf_wifi_sys_hal_dev_add failed
nrf_wifi_fmac_dev_add_zep: nrf_wifi_fmac_dev_add failed
nrf_wifi_if_start_zep: nrf_wifi_fmac_dev_add_zep failed
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;These are just the &lt;strong&gt;failure cascading up the stack&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Bus layer cannot enable the RPU (because SPI transactions to it fail).&lt;/li&gt;
&lt;li&gt;BAL, HAL, and FMAC layers then all fail to add the Wi‑Fi device.&lt;/li&gt;
&lt;li&gt;The Zephyr shim (&lt;code&gt;*_if_start_zep&lt;/code&gt;) concludes that starting the Wi‑Fi interface has failed.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;nrf_wifi_if_stop_zep: rpu_ctx_zep is NULL
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;A later attempt to stop the interface finds that there is &lt;strong&gt;no valid RPU context&lt;/strong&gt;, because initialization never succeeded. This is a follow‑on error, not a separate problem.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;scan: OTP not programmed, proceeding with local MAC: F6:CE:36:00:00:01
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This just means the &lt;strong&gt;MAC address is not programmed in OTP&lt;/strong&gt;, so the sample falls back to a locally defined MAC address. This is expected/harmless when OTP is blank and is exactly the “alternative method” described in the MAC address docs: you can supply a MAC at runtime instead of OTP.&lt;a href="https://docs.nordicsemi.com/bundle/nan_043/page/APP/nan_043/mac_alternative.html"&gt;[MAC alternative]&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;pre&gt;&lt;code&gt;wifi_nrf_disp_scan_zep: Interface not UP
scan: Scan request failed
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Because the RPU never came up, the network interface never reached UP state, so any &lt;code&gt;wifi scan&lt;/code&gt; call fails with “Interface not UP”. This is just the symptom of the earlier bus/RDSR2 failure.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;strong&gt;What to look at&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Based on similar DevZone reports, debugging should focus on:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Powering&lt;/strong&gt; of the nRF7002 (VBAT, VDDIO, BUCKEN / PWRIOVDD) – make sure levels and sequencing match the datasheet.&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf7002/page/chapters/functional/doc/otp_programming.html"&gt;[OTP/power description]&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;SPI wiring and pin configuration&lt;/strong&gt; – verify signals and devicetree match the actual board. RDSR2 failures are typically traced to wiring or power issues.&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/122776/wifi-shell-scan-sta-ap-sample-fails-on-v3-0-2-for-nrf7002ek-with-external-host-stm32-rdsr2-failed-error/542172"&gt;[RDSR2 Nucleo case]&lt;/a&gt;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/118172/nrf5340-nrf7002-wifi-shell-unable-to-execute/519176"&gt;[3.3 V fix]&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Once the RDSR2 / wake‑up errors disappear, the later “Interface not UP” and scan failures should also go away.&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Below is a&amp;nbsp;&lt;/span&gt;&lt;em&gt;template&lt;/em&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;nrf9160dk_nrf9160_ns.overlay&lt;/code&gt;&lt;span&gt;&amp;nbsp;that follows the patterns from the official nRF7002 EK / custom‑board examples and the SPI usage you shared. You must still adapt GPIO numbers and pins to your actual wiring, but the structure and bindings are correct.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/ {
	/* Wi‑Fi interface node and selection */
	nordic_wlan0: nordic_wlan0 {
		compatible = &amp;quot;nordic,wlan0&amp;quot;;
		status = &amp;quot;okay&amp;quot;;
	};

	chosen {
		zephyr,wifi = &amp;amp;nordic_wlan0;
	};

	/* Optional TX power ceiling node, adjust or remove as needed */
	nrf70_tx_power_ceiling: nrf70_tx_power_ceiling_node {
		status = &amp;quot;okay&amp;quot;;
		compatible = &amp;quot;nordic,nrf700x-tx-power-ceiling&amp;quot;;
		max-pwr-2g-dsss      = &amp;lt;0x54&amp;gt;;
		max-pwr-2g-mcs0      = &amp;lt;0x40&amp;gt;;
		max-pwr-2g-mcs7      = &amp;lt;0x40&amp;gt;;
		max-pwr-5g-low-mcs0  = &amp;lt;0x34&amp;gt;;
		max-pwr-5g-low-mcs7  = &amp;lt;0x34&amp;gt;;
		max-pwr-5g-mid-mcs0  = &amp;lt;0x34&amp;gt;;
		max-pwr-5g-mid-mcs7  = &amp;lt;0x34&amp;gt;;
		max-pwr-5g-high-mcs0 = &amp;lt;0x30&amp;gt;;
		max-pwr-5g-high-mcs7 = &amp;lt;0x30&amp;gt;;
	};
};

/*
 * Example: nRF7002 on SPI (change to the SPI instance and pins you actually use).
 * Pattern taken from nRF9160 + nRF70 custom‑board example.[nrf9160+nrf70 DT](https://devzone.nordicsemi.com/f/nordic-q-a/115535/nrf7000-device-tree-file-for-custom-nrf9160-board)
 */
&amp;amp;spi3 {
	status = &amp;quot;okay&amp;quot;;

	pinctrl-0 = &amp;lt;&amp;amp;spi3_default&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;spi3_sleep&amp;gt;;
	pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;

	/* Chip‑select line to nRF7002 */
	cs-gpios = &amp;lt;&amp;amp;gpio0 13 GPIO_ACTIVE_LOW&amp;gt;;

	nrf700x: nrf7002@0 {
		compatible = &amp;quot;nordic,nrf700x-spi&amp;quot;;
		status = &amp;quot;okay&amp;quot;;
		reg = &amp;lt;0&amp;gt;;
		/* Adjust max frequency to your layout, 8 MHz used in ref. design */
		spi-max-frequency = &amp;lt;DT_FREQ_M(8)&amp;gt;;

		/* Power‑control and IRQ lines – adjust GPIOs to your board */
		iovdd-ctrl-gpios = &amp;lt;&amp;amp;gpio0 7  (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)&amp;gt;;
		bucken-gpios     = &amp;lt;&amp;amp;gpio0 16 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)&amp;gt;;
		host-irq-gpios   = &amp;lt;&amp;amp;gpio0 10 GPIO_ACTIVE_HIGH&amp;gt;;
	};
};

/*
 * SPI pin configuration (SCK/MISO/MOSI) – change to the actual port/pin
 * mapping you use between nRF9160 and nRF7002.[spi pinctrl](https://devzone.nordicsemi.com/f/nordic-q-a/115535/nrf7000-device-tree-file-for-custom-nrf9160-board)
 */
&amp;amp;pinctrl {
	spi3_default: spi3_default {
		group1 {
			psels = &amp;lt;NRF_PSEL(SPIM_SCK,  0, 12)&amp;gt;,
				&amp;lt;NRF_PSEL(SPIM_MISO, 0, 14)&amp;gt;,
				&amp;lt;NRF_PSEL(SPIM_MOSI, 0, 15)&amp;gt;;
			/* Stronger drive can help with longer lines */
			nordic,drive-mode = &amp;lt;NRF_DRIVE_H0H1&amp;gt;;
		};
	};

	spi3_sleep: spi3_sleep {
		group1 {
			psels = &amp;lt;NRF_PSEL(SPIM_SCK,  0, 12)&amp;gt;,
				&amp;lt;NRF_PSEL(SPIM_MISO, 0, 14)&amp;gt;,
				&amp;lt;NRF_PSEL(SPIM_MOSI, 0, 15)&amp;gt;;
			low-power-enable;
		};
	};
};&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Notes on adapting it&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;If you are not using&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;spi3&lt;/code&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;on nRF9160, replace&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;&amp;amp;spi3&lt;/code&gt;,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;spi3_default&lt;/code&gt;,&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;spi3_sleep&lt;/code&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;and the pin numbers with the SPI instance/pins you wired, following the same pattern used in the SPI exercises and guides.&lt;a href="https://academy.nordicsemi.com/courses/nrf-connect-sdk-intermediate/lessons/lesson-5-serial-peripheral-interface-spi/topic/exercise-1-10/" rel="noopener noreferrer" target="_blank"&gt;SPI overlay pattern&lt;/a&gt;&lt;a href="https://academy.nordicsemi.com/courses/nrf-connect-sdk-fundamentals/lessons/lesson-3-elements-of-an-nrf-connect-sdk-application/topic/configuration-files/" rel="noopener noreferrer" target="_blank"&gt;Devicetree overlays&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;Ensure&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;CONFIG_SPI=y&lt;/code&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;is set in&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;prj.conf&lt;/code&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;so the SPI driver is enabled.&lt;a href="https://academy.nordicsemi.com/courses/nrf-connect-sdk-intermediate/lessons/lesson-5-serial-peripheral-interface-spi/topic/zephyr-spi-api/#Enabling-Driver" rel="noopener noreferrer" target="_blank"&gt;SPI driver enable&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;&lt;span&gt;If you are using an nRF7002 EK on an nRF9160 DK, Nordic also provides ready‑made shield overlays you can copy/compare against, e.g.&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;boards/shields/nrf7002ek/boards/nrf9160dk_nrf9160_ns.overlay&lt;/code&gt;.&lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/app_dev/device_guides/nrf70/nrf7002ek_dev_guide.html" rel="noopener noreferrer" target="_blank"&gt;EK guide&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/555110?ContentTypeID=1</link><pubDate>Sat, 22 Nov 2025 12:38:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5b037738-748c-4f45-8fb7-a0aed91e92f7</guid><dc:creator>Jagadish Mallesh</dc:creator><description>&lt;p&gt;I can build the project, can you please me the pin configuration for this example. Please find the below logs.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;*** Booting nRF Connect SDK v3.1.0-6c6e5b32496e ***&lt;br /&gt;*** Using Zephyr OS v4.1.99-1612683d4010 ***&lt;br /&gt;[00:00:00.321,197] &amp;lt;inf&amp;gt; wifi_nrf_bus: SPIM spi@b000: freq = 8 MHz&lt;br /&gt;[00:00:00.321,258] &amp;lt;inf&amp;gt; wifi_nrf_bus: SPIM spi@b000: latency = 0&lt;br /&gt;[00:00:00.333,557] &amp;lt;err&amp;gt; wifi_nrf_bus: RPU wakeup write ACK failed even after 10ms&lt;br /&gt;[00:00:00.333,557] &amp;lt;err&amp;gt; wifi_nrf_bus: Error: RDSR2 failed&lt;br /&gt;[00:00:00.333,587] &amp;lt;err&amp;gt; wifi_nrf: zep_shim_bus_qspi_dev_add: RPU enable failed with error -1&lt;br /&gt;[00:00:00.333,679] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_bus_qspi_dev_add: nrf_wifi_osal_bus_qspi_dev_add failed&lt;br /&gt;[00:00:00.333,770] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_bal_dev_add: Bus dev_add failed&lt;br /&gt;[00:00:00.333,862] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_sys_hal_dev_add: nrf_wifi_bal_dev_add failed&lt;br /&gt;[00:00:00.334,014] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_sys_fmac_dev_add: nrf_wifi_sys_hal_dev_add failed&lt;br /&gt;[00:00:00.334,075] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_fmac_dev_add_zep: nrf_wifi_fmac_dev_add failed&lt;br /&gt;[00:00:00.334,106] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_if_start_zep: nrf_wifi_fmac_dev_add_zep failed&lt;br /&gt;Starting nrf9160dk with CPU frequency: 64 MHz&lt;br /&gt;[00:00:01.847,076] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_if_stop_zep: rpu_ctx_zep is NULL&lt;br /&gt;[00:00:01.849,853] &amp;lt;inf&amp;gt; wifi_nrf_bus: SPIM spi@b000: freq = 8 MHz&lt;br /&gt;[00:00:01.849,884] &amp;lt;inf&amp;gt; wifi_nrf_bus: SPIM spi@b000: latency = 0&lt;br /&gt;[00:00:01.862,182] &amp;lt;err&amp;gt; wifi_nrf_bus: RPU wakeup write ACK failed even after 10ms&lt;br /&gt;[00:00:01.862,182] &amp;lt;err&amp;gt; wifi_nrf_bus: Error: RDSR2 failed&lt;br /&gt;[00:00:01.862,213] &amp;lt;err&amp;gt; wifi_nrf: zep_shim_bus_qspi_dev_add: RPU enable failed with error -1&lt;br /&gt;[00:00:01.862,304] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_bus_qspi_dev_add: nrf_wifi_osal_bus_qspi_dev_add failed&lt;br /&gt;[00:00:01.862,396] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_bal_dev_add: Bus dev_add failed&lt;br /&gt;[00:00:01.862,487] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_sys_hal_dev_add: nrf_wifi_bal_dev_add failed&lt;br /&gt;[00:00:01.862,640] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_sys_fmac_dev_add: nrf_wifi_sys_hal_dev_add failed&lt;br /&gt;[00:00:01.862,701] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_fmac_dev_add_zep: nrf_wifi_fmac_dev_add failed&lt;br /&gt;[00:00:01.862,731] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_if_start_zep: nrf_wifi_fmac_dev_add_zep failed&lt;br /&gt;[00:00:01.862,823] &amp;lt;inf&amp;gt; scan: OTP not programmed, proceeding with local MAC: F6:CE:36:00:00:01&lt;br /&gt;[00:00:01.862,854] &amp;lt;err&amp;gt; wifi_nrf: nrf_wifi_disp_scan_zep: Interface not UP&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Jagadish M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554815?ContentTypeID=1</link><pubDate>Wed, 19 Nov 2025 14:38:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a739c423-2e49-43ba-b375-51d93f795a49</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;I was able to reproduce the issue with your settings, which are wrong. If you have a nRF7002EK shield you need to add shield to the build configuration, please &lt;a href="https://devzone.nordicsemi.com/support-private/support/354004#permalink=1113348"&gt;see my screenshot here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;You must add the following:&lt;br /&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/pastedimage1763563114294v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Let me know how that works for you.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554496?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 09:56:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4ab58dcc-0a2c-4d70-9ed2-f9ee36afd30e</guid><dc:creator>Jagadish Mallesh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/building_5F00_config_5F00_1.png" /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/build_5F00_config_5F00_2.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Building scan&lt;br /&gt;west build --build-dir c:/Users/HanXcel/scan/build c:/Users/HanXcel/scan --pristine --board nrf9160dk/nrf9160/ns&lt;/p&gt;
&lt;p&gt;-- west build: generating a build system&lt;br /&gt;Loading Zephyr module(s) (Zephyr base): sysbuild_default&lt;br /&gt;-- 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&lt;br /&gt;-- Cache files will be written to: C:/ncs/v3.1.0/zephyr/.cache&lt;br /&gt;-- Found west (found suitable version &amp;quot;1.4.0&amp;quot;, minimum required is &amp;quot;0.14.0&amp;quot;)&lt;br /&gt;-- Board: nrf9160dk, Revision: 0.14.0, qualifiers: nrf9160/ns&lt;br /&gt;Parsing C:/ncs/v3.1.0/zephyr/share/sysbuild/Kconfig&lt;br /&gt;Loaded configuration &amp;#39;C:/Users/HanXcel/scan/build/_sysbuild/empty.conf&amp;#39;&lt;br /&gt;Merged configuration &amp;#39;C:/Users/HanXcel/scan/build/_sysbuild/empty.conf&amp;#39;&lt;br /&gt;Merged configuration &amp;#39;c:/Users/HanXcel/scan/sysbuild.conf&amp;#39;&lt;br /&gt;Configuration saved to &amp;#39;C:/Users/HanXcel/scan/build/zephyr/.config&amp;#39;&lt;br /&gt;Kconfig header saved to &amp;#39;C:/Users/HanXcel/scan/build/_sysbuild/autoconf.h&amp;#39;&lt;br /&gt;--&lt;br /&gt; **************************&lt;br /&gt; * Running CMake for scan *&lt;br /&gt; **************************&lt;/p&gt;
&lt;p&gt;Loading Zephyr default modules (Zephyr base).&lt;br /&gt;-- Application: C:/Users/HanXcel/scan&lt;br /&gt;-- CMake version: 3.21.0&lt;br /&gt;-- 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&lt;br /&gt;-- Cache files will be written to: C:/ncs/v3.1.0/zephyr/.cache&lt;br /&gt;-- Zephyr version: 4.1.99 (C:/ncs/v3.1.0/zephyr)&lt;br /&gt;-- Found west (found suitable version &amp;quot;1.4.0&amp;quot;, minimum required is &amp;quot;0.14.0&amp;quot;)&lt;br /&gt;-- Board: nrf9160dk, Revision: 0.14.0, qualifiers: nrf9160/ns&lt;br /&gt;-- Found host-tools: zephyr 0.17.0 (C:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk)&lt;br /&gt;-- Found toolchain: zephyr 0.17.0 (C:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk)&lt;br /&gt;-- 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;)&lt;br /&gt;-- Found BOARD.dts: C:/ncs/v3.1.0/zephyr/boards/nordic/nrf9160dk/nrf9160dk_nrf9160_ns.dts&lt;br /&gt;-- Found devicetree overlay: C:/ncs/v3.1.0/zephyr/boards/nordic/nrf9160dk/nrf9160dk_nrf9160_ns_0_14_0.overlay&lt;br /&gt;-- Generated zephyr.dts: C:/Users/HanXcel/scan/build/scan/zephyr/zephyr.dts&lt;br /&gt;-- Generated pickled edt: C:/Users/HanXcel/scan/build/scan/zephyr/edt.pickle&lt;br /&gt;-- Generated devicetree_generated.h: C:/Users/HanXcel/scan/build/scan/zephyr/include/generated/zephyr/devicetree_generated.h&lt;/p&gt;
&lt;p&gt;warning: WIFI_NRF70 (defined at drivers/wifi/nrf_wifi/Kconfig.nrfwifi:11) was assigned the value &amp;#39;y&amp;#39;&lt;br /&gt;but got the value &amp;#39;n&amp;#39;. Check these unsatisfied dependencies: (DT_HAS_NORDIC_NRF7002_SPI_ENABLED ||&lt;br /&gt;DT_HAS_NORDIC_NRF7002_QSPI_ENABLED || DT_HAS_NORDIC_NRF7001_SPI_ENABLED ||&lt;br /&gt;DT_HAS_NORDIC_NRF7001_QSPI_ENABLED || DT_HAS_NORDIC_NRF7000_SPI_ENABLED ||&lt;br /&gt;DT_HAS_NORDIC_NRF7000_QSPI_ENABLED || n) (=n). See&lt;br /&gt;&lt;a href="http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_WIFI_NRF70"&gt;docs.zephyrproject.org/.../kconfig.html&lt;/a&gt; and/or look up WIFI_NRF70 in the&lt;br /&gt;menuconfig/guiconfig interface. The Application Development Primer, Setting Configuration Values,&lt;br /&gt;and Kconfig - Tips and Best Practices sections of the manual might be helpful too.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;warning: The choice symbol NRF_WIFI_PATCHES_EXT_FLASH_DISABLED (defined at&lt;br /&gt;C:/ncs/v3.1.0/nrf\subsys\net\lib\nrf70_fw_ext/Kconfig:22) was selected (set =y), but no symbol ended&lt;br /&gt;up as the choice selection. See&lt;br /&gt;&lt;a href="http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF_WIFI_PATCHES_EXT_FLASH_DISABLED"&gt;docs.zephyrproject.org/.../kconfig.html&lt;/a&gt; and/or&lt;br /&gt;look up NRF_WIFI_PATCHES_EXT_FLASH_DISABLED in the menuconfig/guiconfig interface. The Application&lt;br /&gt;Development Primer, Setting Configuration Values, and Kconfig - Tips and Best Practices sections of&lt;br /&gt;the manual might be helpful too.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;warning: The choice symbol NRF70_SCAN_ONLY (defined at drivers/wifi/nrf_wifi/Kconfig.nrfwifi:57) was&lt;br /&gt;selected (set =y), but no symbol ended up as the choice selection. See&lt;br /&gt;&lt;a href="http://docs.zephyrproject.org/latest/kconfig.html#CONFIG_NRF70_SCAN_ONLY"&gt;docs.zephyrproject.org/.../kconfig.html&lt;/a&gt; and/or look up&lt;br /&gt;NRF70_SCAN_ONLY in the menuconfig/guiconfig interface. The Application Development Primer, Setting&lt;br /&gt;Configuration Values, and Kconfig - Tips and Best Practices sections of the manual might be helpful&lt;br /&gt;too.&lt;/p&gt;
&lt;p&gt;Parsing C:/Users/HanXcel/scan/Kconfig&lt;br /&gt;Loaded configuration &amp;#39;C:/ncs/v3.1.0/zephyr/boards/nordic/nrf9160dk/nrf9160dk_nrf9160_ns_defconfig&amp;#39;&lt;br /&gt;Merged configuration &amp;#39;C:/Users/HanXcel/scan/prj.conf&amp;#39;&lt;br /&gt;Merged configuration &amp;#39;C:/Users/HanXcel/scan/build/scan/zephyr/.config.sysbuild&amp;#39;&lt;br /&gt;Configuration saved to &amp;#39;C:/Users/HanXcel/scan/build/scan/zephyr/.config&amp;#39;&lt;br /&gt;Kconfig header saved to &amp;#39;C:/Users/HanXcel/scan/build/scan/zephyr/include/generated/zephyr/autoconf.h&amp;#39;&lt;br /&gt;-- Found GnuLd: c:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi/bin/ld.bfd.exe (found version &amp;quot;2.38&amp;quot;)&lt;br /&gt;-- The C compiler identification is GNU 12.2.0&lt;br /&gt;-- The CXX compiler identification is GNU 12.2.0&lt;br /&gt;-- The ASM compiler identification is GNU&lt;br /&gt;-- Found assembler: C:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe&lt;br /&gt;=========== Generating psa_crypto_config ===============&lt;br /&gt;Backup: CONFIG_MBEDTLS_PSA_CRYPTO_SPM: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_PSA_CRYPTO_C: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_THREADING_C: True&lt;br /&gt;Backup: CONFIG_MBEDTLS_THREADING_ALT: False&lt;br /&gt;=========== Checkpoint: backup ===============&lt;br /&gt;Restore: CONFIG_MBEDTLS_PSA_CRYPTO_SPM: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_PSA_CRYPTO_C: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_THREADING_C: True&lt;br /&gt;Restore: CONFIG_MBEDTLS_THREADING_ALT: False&lt;br /&gt;=========== End psa_crypto_config ===============&lt;br /&gt;=========== Generating psa_crypto_library_config ===============&lt;br /&gt;Backup: CONFIG_MBEDTLS_PSA_CRYPTO_C: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_PSA_CRYPTO_SPM: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_USE_PSA_CRYPTO: True&lt;br /&gt;Backup: CONFIG_MBEDTLS_PLATFORM_PRINTF_ALT: False&lt;br /&gt;Backup: CONFIG_MBEDTLS_THREADING_C: True&lt;br /&gt;Backup: CONFIG_MBEDTLS_THREADING_ALT: False&lt;br /&gt;=========== Checkpoint: backup ===============&lt;br /&gt;Restore: CONFIG_MBEDTLS_PSA_CRYPTO_C: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_PSA_CRYPTO_KEY_ID_ENCODES_OWNER: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_PSA_CRYPTO_SPM: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_USE_PSA_CRYPTO: True&lt;br /&gt;Restore: CONFIG_MBEDTLS_PLATFORM_PRINTF_ALT: False&lt;br /&gt;Restore: CONFIG_MBEDTLS_THREADING_C: True&lt;br /&gt;Restore: CONFIG_MBEDTLS_THREADING_ALT: False&lt;br /&gt;=========== End psa_crypto_library_config ===============&lt;br /&gt;-- Found gen_kobject_list: C:/ncs/v3.1.0/zephyr/scripts/build/gen_kobject_list.py&lt;br /&gt;CMake Warning at C:/ncs/v3.1.0/zephyr/CMakeLists.txt:2232 (message):&lt;br /&gt; __ASSERT() statements are globally ENABLED&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;-- Configuring done&lt;br /&gt;-- Generating done&lt;br /&gt;-- Build files have been written to: C:/Users/HanXcel/scan/build/scan&lt;br /&gt;Dropping partition &amp;#39;nrf_modem_lib_trace&amp;#39; since its size is 0.&lt;br /&gt;Dropping partition &amp;#39;nonsecure_storage&amp;#39; since it is empty.&lt;br /&gt;-- Configuring done&lt;br /&gt;-- Generating done&lt;br /&gt;-- Build files have been written to: C:/Users/HanXcel/scan/build&lt;br /&gt;&amp;larr;[92m-- west build: building application&lt;br /&gt;[5/10] Performing build step for &amp;#39;scan&amp;#39;&lt;br /&gt;[4/275] Generating include/generated/zephyr/version.h&lt;br /&gt;-- Zephyr version: 4.1.99 (C:/ncs/v3.1.0/zephyr), build: ncs-v3.1.0&lt;br /&gt;[5/275] Generating include/generated/device-api-sections.ld, include/generated/device-api-secti[6/275] Generating include/generated/device-api-sections.ld, include/generated/device-api-secti[7/275] Generating include/generated/zephyr/syscall_dispatch.c, include/generated/zephyr/syscal[9/275] Generating include/generated/zephyr/kobj-types-enum.h, include/generated/zephyr/otype-t[10/275] Generating ../../tfm/CMakeCache.txt&lt;br /&gt;-- Found Git: C:/ncs/toolchains/b8b84efebd/mingw64/bin/git.exe (found version &amp;quot;2.37.3.windows.1&amp;quot;)&lt;br /&gt;-- The C compiler identification is GNU 12.2.0&lt;br /&gt;-- The CXX compiler identification is GNU 12.2.0&lt;br /&gt;-- The ASM compiler identification is GNU&lt;br /&gt;-- Found assembler: C:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk/arm-zephyr-eabi/bin/arm-zephyr-eabi-gcc.exe&lt;br /&gt;-- Found Python3: C:/ncs/toolchains/b8b84efebd/opt/bin/python.exe (found version &amp;quot;3.12.4&amp;quot;) found components: Interpreter&lt;br /&gt;-- 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&lt;br /&gt;-- Cache files will be written to: C:/ncs/v3.1.0/zephyr/.cache&lt;br /&gt;-- Configuring done&lt;br /&gt;-- Generating done&lt;br /&gt;-- Build files have been written to: C:/Users/HanXcel/scan/build/scan/tfm&lt;br /&gt;[15/275] Performing build step for &amp;#39;tfm&amp;#39;&lt;br /&gt;[0/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/common/syscalls_stu[2/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/generated/secure_fw/partitions/c[3/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/generated/secure_fw/partitions/p[4/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/partitions/ns_agent_tz/load_info_ns[5/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/target/nordic_nrf/c[6/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/partitions/ns_agent_tz/ns_agent_tz_[7/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/target/nordic_nrf/c[8/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/target/nordic_nrf/c[9/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/target/nordic_nrf/c[10/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/target/nordic_nrf/[11/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/target/nordic_nrf/[12/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/__/platf[15/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/spm/core[16/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/shared/c[17/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/shared/c[18/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/__/inter[19/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/__/inter[20/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sp_log.dir/tfm_sp_log_raw.[21/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/C_/ncs/v3.1.0/nrf[22/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sprt.dir/__/__/__/__/inter[24/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[25/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[26/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[27/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[28/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[29/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[30/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[31/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[32/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[33/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/__[34/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[35/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[36/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[37/141] Building C object secure_fw/partitions/crypto/CMakeFiles/tfm_psa_rot_partition_crypto.dir/cr[38/141] Building C object secure_fw/partitions/lib/runtime/CMakeFiles/tfm_sp_log.dir/__/__/__/__/pla[39/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[40/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[41/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/crypto_[42/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[43/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[44/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[45/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[46/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[47/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[48/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[49/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/mbedcry[50/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon/CM[51/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon...[52/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon/CM[53/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon/CM[54/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon/CM[55/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon/CM[56/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/core/nrf_oberon/CM[57/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/nrf_sec[58/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/CMakeFiles/nrf_sec[59/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[60/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[61/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[62/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[63/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[64/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[65/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[66/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[67/141] Building C object secure_fw/partitions/crypto/mbedcrypto/nrf_security_src/drivers/nrf_obe...[68/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/modules/hal/nordic/nrfx/d[69/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/nrf_e[70/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/nrfx_[71/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/nativ[72/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/nativ[73/141] Building C object secure_fw/partitions/platform/CMakeFiles/tfm_psa_rot_partition_platform.di[74/141] Building C object secure_fw/partitions/platform/CMakeFiles/tfm_psa_rot_partition_platform.di[75/141] Building C object secure_fw/partitions/platform/CMakeFiles/tfm_psa_rot_partition_platform.di[78/141] Building C object secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/psa_api_veneers_v80m[79/141] Building C object secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/co[81/141] Building C object secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/platform/[82/141] Building C object secure_fw/CMakeFiles/tfm_s.dir/__/generated/secure_fw/partitions/crypto/au[83/141] Building C object secure_fw/CMakeFiles/tfm_s.dir/__/platform/ext/target/nordic_nrf/common/co[84/141] Building C object secure_fw/CMakeFiles/tfm_s.dir/partitions/ns_agent_tz/load_info_ns_agent_t[102/141] Building C object secure_fw/spm/CMakeFiles/tfm_spm.dir/__/__/platform/ext/common/tfm_hal_nv[104/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/modules/hal/nordic/nrfx/[105/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/modules/hal/nordic/nrfx/[106/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/serv[107/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/serv[108/141] Building C object platform/CMakeFiles/platform_s.dir/ext/target/nordic_nrf/common/core/cmsi[109/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[110/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[111/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[112/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[113/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[114/141] Building C object platform/CMakeFiles/platform_s.dir/ext/common/tfm_hal_spm_logdev_peripher[115/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[116/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[117/141] Building C object platform/CMakeFiles/platform_s.dir/C_/ncs/v3.1.0/nrf/modules/trusted-firm[126/141] Linking C static library secure_fw\partitions\crypto\mbedcrypto\nrf_security_src\drivers\nr[127/141] Linking C static library secure_fw\partitions\crypto\mbedcrypto\nrf_security_src\core\nrf_o[128/141] Linking C static library secure_fw\partitions\crypto\mbedcrypto\nrf_security_src\libnrf_sec[129/141] Linking C static library secure_fw\partitions\crypto\mbedcrypto\nrf_security_src\libmbedcry[130/141] Linking C static library secure_fw\partitions\crypto\mbedcrypto\nrf_security_src\libcrypto_[135/141] Building C object platform/target/nrf91/nrf_common/CMakeFiles/tfm_s_scatter.dir/__/__/__/__[137/141] Linking C executable bin\tfm_s.axf&lt;br /&gt;Memory region Used Size Region Size %age Used&lt;br /&gt; FLASH: 32092 B 32 KB 97.94%&lt;br /&gt; RAM: 10404 B 32 KB 31.75%&lt;br /&gt;[141/141] Linking C static library secure_fw\libtfm_s_veneers.a&lt;br /&gt;[17/275] Performing install step for &amp;#39;tfm&amp;#39;&lt;br /&gt;-- Install configuration: &amp;quot;MinSizeRel&amp;quot;&lt;br /&gt;----- Installing platform NS -----&lt;br /&gt;[18/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto_base.dir/C_/ncs/[18/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto_base.dir/C_/ncs/[18/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto_base.dir/C_/ncs/[18/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto_base.dir/C_/ncs/[18/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto_base.dir/C_/ncs/[19/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[21/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[22/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/nrf_security_utils.dir/util[25/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[29/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[31/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[32/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[36/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[38/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[41/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[44/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[47/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[52/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/legacy/ecdsa[53/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[55/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[65/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/legacy/ecdsa[67/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[68/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[70/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1.[73/275] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/legacy/ecjpa[78/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.di[79/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.di[81/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.di[83/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.di[87/275] Building C object modules/nrf/modules/trusted-firmware-m/CMakeFiles/tfm_api_nrf.dir/tfm_boar[109/275] Building C object modules/trusted-firmware-m/CMakeFiles/tfm_api.dir/interface/interface.c.o[111/275] Building C object modules/trusted-firmware-m/CMakeFiles/tfm_api.dir/__/__/tfm/api_ns/interf[112/275] Building C object modules/trusted-firmware-m/CMakeFiles/tfm_api.dir/__/__/tfm/api_ns/interf[113/275] Building C object modules/trusted-firmware-m/CMakeFiles/tfm_api.dir/__/__/tfm/api_ns/interf[114/275] Building C object modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic[120/275] Linking C static library modules\nrf\modules\trusted-firmware-m\lib..__nrf__modules__truste[122/275] Building C object modules/hal_nordic/modules/hal_nordic/nrfx/CMakeFiles/modules__hal_nordic[165/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[167/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[168/275] Building ASM object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m[169/275] Building ASM object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m[170/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[172/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[174/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[175/275] Building ASM object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m[178/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[179/275] Building C object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m.d[180/275] Building ASM object zephyr/arch/arch/arm/core/cortex_m/CMakeFiles/arch__arm__core__cortex_m[183/275] Building C object zephyr/arch/arch/arm/core/cortex_m/cmse/CMakeFiles/arch__arm__core__corte[186/275] Building C object zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_cor[187/275] Building C object zephyr/arch/arch/arm/core/mpu/CMakeFiles/arch__arm__core__mpu.dir/arm_mpu[189/275] Building C object zephyr/lib/libc/picolibc/CMakeFiles/lib__libc__picolibc.dir/errno_wrap.c.[196/275] Building C object zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/abo[199/275] Building C object zephyr/lib/libc/common/CMakeFiles/lib__libc__common.dir/source/stdlib/mal[201/275] Building C object zephyr/soc/soc/nrf9160/CMakeFiles/soc__nordic.dir/validate_binding_header[204/275] Building C object zephyr/soc/soc/nrf9160/CMakeFiles/soc__nordic.dir/validate_enabled_instan[206/275] Building C object zephyr/boards/nordic/nrf9160dk/CMakeFiles/boards__nordic__nrf9160dk.dir/n[208/275] Building C object zephyr/subsys/debug/coredump/CMakeFiles/subsys__debug__coredump.dir/cored[211/275] Building C object zephyr/subsys/net/l2/wifi/CMakeFiles/subsys__net__l2__wifi.dir/wifi_mgmt.[223/275] Building C object zephyr/subsys/net/l2/offloaded_netdev/CMakeFiles/subsys__net__l2__offload[227/275] Building C object zephyr/drivers/clock_control/CMakeFiles/drivers__clock_control.dir/clock_[229/275] Building C object zephyr/drivers/entropy/CMakeFiles/drivers__entropy.dir/entropy_psa_crypto[236/275] Building C object zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_nrfx_uarte.c.ob[242/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[244/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[245/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[246/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[247/275] Building C object modules/nrf/lib/modem_antenna/CMakeFiles/..__nrf__lib__modem_antenna.dir/[252/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[254/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[255/275] Building C object modules/nrf/lib/nrf_modem_lib/CMakeFiles/..__nrf__lib__nrf_modem_lib.dir/[270/275] Linking C executable zephyr\zephyr_pre0.elf&lt;br /&gt;FAILED: zephyr/zephyr_pre0.elf zephyr/zephyr_pre0.map C:/Users/HanXcel/scan/build/scan/zephyr/zephyr_pre0.map&lt;br /&gt;cmd.exe /C &amp;quot;cd . &amp;amp;&amp;amp; C:\ncs\toolchains\b8b84efebd\opt\zephyr-sdk\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe -gdwarf-4 @CMakeFiles\zephyr_pre0.rsp -o zephyr\zephyr_pre0.elf -L&amp;quot;c:/ncs/toolchains/b8b84e&lt;br /&gt;febd/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp&amp;quot; -lc -lgcc &amp;amp;&amp;amp; cmd.exe /C &amp;quot;cd /D C:\Users\HanXcel\scan\build\scan\zephyr &amp;amp;&amp;amp; C:\ncs\toolchains\b8b84efebd\o&lt;br /&gt;pt\bin\cmake.exe -E true&amp;quot;&amp;quot;&lt;br /&gt;c:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.bfd.exe: app/libapp.a(main.c.obj): in function `main&amp;#39;:&lt;br /&gt;C:/Users/HanXcel/scan/src/main.c:298: undefined reference to `net_mgmt_NET_REQUEST_ETHERNET_SET_MAC_ADDRESS&amp;#39;&lt;br /&gt;collect2.exe: error: ld returned 1 exit status&lt;br /&gt;ninja: build stopped: subcommand failed.&lt;br /&gt;FAILED: _sysbuild/sysbuild/images/scan-prefix/src/scan-stamp/scan-build C:/Users/HanXcel/scan/build/_sysbuild/sysbuild/images/scan-prefix/src/scan-stamp/scan-build&lt;br /&gt;cmd.exe /C &amp;quot;cd /D C:\Users\HanXcel\scan\build\scan &amp;amp;&amp;amp; C:\ncs\toolchains\b8b84efebd\opt\bin\cmake.exe --build .&amp;quot;&lt;br /&gt;ninja: build stopped: subcommand failed.&lt;br /&gt;FATAL ERROR: command exited with status 1: &amp;#39;C:\ncs\toolchains\b8b84efebd\opt\bin\cmake.EXE&amp;#39; --build C:/Users/HanXcel/scan/build&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using the vs code nrf connect. In that extension i&amp;#39;m adding the generate build option intially. then if i want to build, I will use build option in nrf connect extension.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Jagadish M.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554490?ContentTypeID=1</link><pubDate>Mon, 17 Nov 2025 09:13:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4290a65d-80b9-41eb-8560-ddb67b221863</guid><dc:creator>&amp;#216;yvind</dc:creator><description>[quote user="Jagadish Mallesh"]Please give me an step by step process to connect the nrf9160 with nrf7002. Pin configurations, prj.config, how can we scan the wifi by using the wifi shell example.[/quote]
&lt;p&gt;I am not able to provide any steps without knowing what you are doing on your side for it to fail. Please provide answers to my quesitons.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554442?ContentTypeID=1</link><pubDate>Sat, 15 Nov 2025 10:36:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:de380e77-573d-4590-b144-5ce4960adf33</guid><dc:creator>Jagadish Mallesh</dc:creator><description>&lt;p&gt;can you suggest me the pin connections with nrf9160 interfacing with nrf7002-EK? I&amp;#39;m using the wifi-shell example.&lt;/p&gt;
&lt;p&gt;Please give me an step by step process to connect the nrf9160 with nrf7002. Pin configurations, prj.config, how can we scan the wifi by using the wifi shell example.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Why i cannot build the wifi-scan example.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554399?ContentTypeID=1</link><pubDate>Fri, 14 Nov 2025 13:41:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:78ee94c9-0dbc-4561-b176-e70cd63afef1</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;No need to downgrade, as there should not be any changes.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;please provide build configuration and full build logs from your device.&amp;nbsp;&lt;/p&gt;
[quote user="Jagadish Mallesh"]C:/Users/HanXcel/scan/src/main.c:298: undefined reference to `net_mgmt_NET_REQUEST_ETHERNET_SET_MAC_ADDRESS&amp;#39;[/quote]
&lt;p&gt;How are you building your project? What is the command you are starting build with?&lt;/p&gt;
&lt;p&gt;-Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554395?ContentTypeID=1</link><pubDate>Fri, 14 Nov 2025 13:25:02 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b22bbbb3-6ddd-4224-a7a2-5d757923305c</guid><dc:creator>Jagadish Mallesh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I downgraded the SDK3.1.0 AND toolchain also 3.1.0. but same problem.&lt;/p&gt;
&lt;p&gt;Please find the below logs.&lt;/p&gt;
&lt;p&gt;FAILED: zephyr/zephyr_pre0.elf zephyr/zephyr_pre0.map C:/Users/HanXcel/scan/build/scan/zephyr/zephyr_pre0.map&lt;br /&gt;cmd.exe /C &amp;quot;cd . &amp;amp;&amp;amp; C:\ncs\toolchains\b8b84efebd\opt\zephyr-sdk\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe -gdwarf-4 @CMakeFiles\zephyr_pre0.rsp -o zephyr\zephyr_pre0.elf -L&amp;quot;c:/ncs/toolchains/b8b84e&lt;br /&gt;febd/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/thumb/v8-m.main/nofp&amp;quot; -lc -lgcc &amp;amp;&amp;amp; cmd.exe /C &amp;quot;cd /D C:\Users\HanXcel\scan\build\scan\zephyr &amp;amp;&amp;amp; C:\ncs\toolchains\b8b84efebd\o&lt;br /&gt;pt\bin\cmake.exe -E true&amp;quot;&amp;quot;&lt;br /&gt;c:/ncs/toolchains/b8b84efebd/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.bfd.exe: app/libapp.a(main.c.obj): in function `main&amp;#39;:&lt;br /&gt;C:/Users/HanXcel/scan/src/main.c:298: undefined reference to `net_mgmt_NET_REQUEST_ETHERNET_SET_MAC_ADDRESS&amp;#39;&lt;br /&gt;collect2.exe: error: ld returned 1 exit status&lt;br /&gt;ninja: build stopped: subcommand failed.&lt;br /&gt;FAILED: _sysbuild/sysbuild/images/scan-prefix/src/scan-stamp/scan-build C:/Users/HanXcel/scan/build/_sysbuild/sysbuild/images/scan-prefix/src/scan-stamp/scan-build&lt;br /&gt;cmd.exe /C &amp;quot;cd /D C:\Users\HanXcel\scan\build\scan &amp;amp;&amp;amp; C:\ncs\toolchains\b8b84efebd\opt\bin\cmake.exe --build .&amp;quot;&lt;br /&gt;ninja: build stopped: subcommand failed.&lt;br /&gt;FATAL ERROR: command exited with status 1: &amp;#39;C:\ncs\toolchains\b8b84efebd\opt\bin\cmake.EXE&amp;#39; --build C:/Users/HanXcel/scan/build&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Jagadish M&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554241?ContentTypeID=1</link><pubDate>Thu, 13 Nov 2025 10:10:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:22de6554-fad4-4122-92cd-03d26c9aec79</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;I am using default settings from device tree and prj.conf as per documentation. Here is my build configuration from VS Code&lt;br /&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/pastedimage1763028555956v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554236?ContentTypeID=1</link><pubDate>Thu, 13 Nov 2025 09:57:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4a14e32a-393a-49a4-b7dc-f854ea780db0</guid><dc:creator>Jagadish Mallesh</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;when i was give the board target nrf9160dk/nrf9160_ns there is an problem. when we given the nrf7002 there no problem. please share the device tree and prj.config file for my reference and guide me how we can use the nrf9160 with nrf7001 for wifiscan.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks and Regards,&lt;/p&gt;
&lt;p&gt;Jagadish M.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554233?ContentTypeID=1</link><pubDate>Thu, 13 Nov 2025 09:49:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:927951f4-ea1d-4c79-86c6-98646986faca</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Thanks for providing the logs. How are you starting build? I.e. from the &lt;a href="https://docs.nordicsemi.com/bundle/ncs-3.1.1/page/nrf/samples/wifi/shell/README.html"&gt;WiFi shell documentation&lt;/a&gt;&lt;br /&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/pastedimage1763027358532v4.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I have no issues building the sample on my side.&lt;/p&gt;
&lt;p&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554220?ContentTypeID=1</link><pubDate>Thu, 13 Nov 2025 08:05:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a8f5c894-efe2-4e3f-9c12-91c665380b63</guid><dc:creator>Jagadish Mallesh</dc:creator><description>&lt;p&gt;[457/557] Building C object zephyr/drivers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/src/fmac_main.c.obj FAILED: zephyr/drivers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/src/fmac_main.c.obj C:\ncs\toolchains\c1a76fddb2\opt\zephyr-sdk\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=30808 -DMBEDTLS_CONFIG_FILE=\&amp;quot;nrf-config.h\&amp;quot; -DMBEDTLS_PSA_CRYPTO_CONFIG_FILE=\&amp;quot; nrf-psa-crypto-config.h\&amp;quot; -DNRF54L_CONFIGURATION_56_ENABLE=0 -DNRF70_2_4G_ONLY -DNRF70_ANT_GAIN_2G=0 -DNRF70_ANT_GAIN_5G_BAND1=0 -DNRF70_ANT_GAIN_5G_BAND2=0 -DNRF70_ANT_GAIN_5G_BAND3=0 -DNRF70_BAND_2G _LOWER_EDGE_BACKOFF_DSSS=0 -DNRF70_BAND_2G_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_2G_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_2G_UPPER_EDGE_BACKOFF_DSSS=0 -DNRF70_BAND_2G_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAN D_2G_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_ HT=0 -DNRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UN II_2C_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_3_LOWER_EDGE_BACK OFF_HE=0 -DNRF70_BAND_UNII_3_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_4_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UN II_4_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_DATA_TX -DNRF70_LOG_VERBOSE -DNRF70_MAX_TX_PENDING_QLEN=18 -DNRF70_MAX_TX_T OKENS=10 -DNRF70_PCB_LOSS_2G=0 -DNRF70_PCB_LOSS_5G_BAND1=0 -DNRF70_PCB_LOSS_5G_BAND2=0 -DNRF70_PCB_LOSS_5G_BAND3=0 -DNRF70_RPU_PS_IDLE_TIMEOUT_MS=10 -DNRF70_RX_MAX_DATA_SIZE=1600 -DNRF70_RX_NUM_BUFS=1 6 -DNRF70_STA_MODE -DNRF70_SYSTEM_MODE -DNRF70_TCP_IP_CHECKSUM_OFFLOAD -DNRF9160_XXAA -DNRF_SKIP_FICR_NS_COPY_TO_RAM -DNRF_TRUSTZONE_NONSECURE -DNRF_WIFI_AP_DEAD_DETECT_TIMEOUT=20 -DNRF_WIFI_DISPLAY_S CAN_BSS_LIMIT=150 -DNRF_WIFI_IFACE_MTU=1500 -DNRF_WIFI_LOW_POWER -DNRF_WIFI_MAX_PS_POLL_FAIL_CNT=10 -DNRF_WIFI_MGMT_BUFF_OFFLOAD -DNRF_WIFI_PS_INT_PS=y -DNRF_WIFI_RPU_MIN_TIME_TO_ENTER_SLEEP_MS=5000 - DNRF_WIFI_RPU_RECOVERY -DNRF_WIFI_RPU_RECOVERY_PS_ACTIVE_TIMEOUT_MS=50000 -DNRF_WIFI_RX_STBC_HT -DPICOLIBC_DOUBLE_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -DWIFI_NRF70_LOG_LEVEL=3 -D__LINUX_ERRNO_EXTENS IONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/HanXcel/shell/build/shell/zephyr/include/generated/zephyr -IC:/ncs/v3.1.1/zephyr/include -IC:/Users/HanXcel/shell/build/shell /zephyr/include/generated -IC:/ncs/v3.1.1/zephyr/soc/nordic -IC:/ncs/v3.1.1/zephyr/include/zephyr/posix -IC:/ncs/v3.1.1/zephyr/lib/posix/options/getopt -IC:/ncs/v3.1.1/zephyr/soc/nordic/nrf91/. -IC:/n cs/v3.1.1/zephyr/soc/nordic/common/. -IC:/ncs/v3.1.1/zephyr/subsys/net/l2 -IC:/ncs/v3.1.1/zephyr/subsys/net/lib/dns/. -IC:/ncs/v3.1.1/zephyr/subsys/net/conn_mgr/. -IC:/ncs/v3.1.1/zephyr/subsys/setting s/include -IC:/ncs/v3.1.1/zephyr/subsys/shell/modules/kernel_service/thread/.. -IC:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/inc -IC:/ncs/v3.1.1/zephyr/subsys/net/ip -IC:/ncs/v3.1.1/nrf/include -IC:/Us ers/HanXcel/shell/build/shell/tfm/api_ns/interface/include -IC:/Users/HanXcel/shell/build/shell/zephyr/misc/generated -IC:/ncs/v3.1.1/modules/lib/hostap/port/mbedtls -IC:/ncs/v3.1.1/nrf/subsys/setting s/include -IC:/ncs/v3.1.1/nrf/modules/trusted-firmware-m/. -IC:/ncs/v3.1.1/nrf/include/tfm -IC:/ncs/v3.1.1/nrf/tests/include -IC:/ncs/v3.1.1/zephyr/modules/hostap/src -IC:/ncs/v3.1.1/modules/lib/hosta p -IC:/ncs/v3.1.1/modules/lib/hostap/wpa_supplicant -IC:/ncs/v3.1.1/modules/lib/hostap/src -IC:/ncs/v3.1.1/modules/lib/hostap/src/common -IC:/ncs/v3.1.1/modules/lib/hostap/src/eap_common -IC:/ncs/v3.1 .1/modules/lib/hostap/src/eap_server -IC:/ncs/v3.1.1/modules/lib/hostap/src/radius -IC:/ncs/v3.1.1/modules/lib/hostap/src/crypto -IC:/ncs/v3.1.1/modules/lib/hostap/src/ap -IC:/ncs/v3.1.1/modules/lib/h ostap/src/drivers -IC:/ncs/v3.1.1/modules/lib/hostap/src/rsn_supp -IC:/ncs/v3.1.1/modules/hal/cmsis/CMSIS/Core/Include -IC:/ncs/v3.1.1/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/ncs/v3.1.1/zephyr/mod ules/cmsis_6/. -IC:/ncs/v3.1.1/nrf/modules/hal_nordic/. -IC:/ncs/v3.1.1/modules/hal/nordic/nrfx -IC:/ncs/v3.1.1/modules/hal/nordic/nrfx/drivers/include -IC:/ncs/v3.1.1/modules/hal/nordic/nrfx/mdk -IC: /ncs/v3.1.1/zephyr/modules/hal_nordic/nrfx/. -IC:/ncs/v3.1.1/zephyr/modules/nrf_wifi/os -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/os_if/inc -IC:/ncs/v3.1.1/nrfxlib/nrf_modem/include -IC:/Users/HanXcel/shel l/build/shell/generated/interface_nrf_security_psa -IC:/ncs/v3.1.1/nrf/subsys/nrf_security/include -IC:/ncs/v3.1.1/modules/crypto/oberon-psa-crypto/include -IC:/ncs/v3.1.1/nrf/subsys/nrf_security/src/ threading/include -IC:/ncs/v3.1.1/nrf/subsys/nrf_security/src/utils -IC:/ncs/v3.1.1/modules/crypto/oberon-psa-crypto/library -IC:/ncs/v3.1.1/modules/crypto/mbedtls/library -IC:/ncs/v3.1.1/modules/cryp to/mbedtls/include -IC:/ncs/v3.1.1/modules/crypto/mbedtls/include/library -IC:/ncs/v3.1.1/nrfxlib/crypto/nrf_oberon/include -IC:/ncs/v3.1.1/nrfxlib/crypto/nrf_oberon/include/mbedtls -IC:/ncs/v3.1.1/mo dules/lib/nrf_wifi -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/../bus -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/utils/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/bus_if/bus/qspi/inc -IC:/ncs/v3.1.1/modules/lib/nrf_w ifi/bus_if/bal/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_if/umac_if/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_load/mips/fw/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/hw_if/hal/inc -IC:/ncs/v3.1.1/mo dules/lib/nrf_wifi/fw_if/umac_if/inc/fw -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_if/umac_if/inc/fw/stats -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_if/umac_if/inc/fw/stats/system -isystem C:/ncs/v3.1.1/ze phyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/HanXcel/shell/build/shell/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=alway s -mcpu=cortex-m33 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/ncs/toolchains/c1a76fddb2/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/ncs/v3.1.1/zephyr/include/zephyr/t oolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=impli cit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/HanXcel/shell=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/ncs/v3.1.1/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/ncs/v3.1.1=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -D_POSIX_THREADS -std=c99 -MD -MT zephyr/dri vers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/src/fmac_main.c.obj -MF zephyr\drivers\wifi\nrf_wifi\CMakeFiles\nrf_wifi.dir\src\fmac_main.c.obj.d -o zephyr/drivers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/sr c/fmac_main.c.obj -c C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c In file included from C:/ncs/v3.1.1/zephyr/include/zephyr/arch/arm/arch.h:20, from C:/ncs/v3.1.1/zephyr/include/zephyr/arch/cpu.h:19, from C:/ncs/v3.1.1/zephyr/include/zephyr/kernel_includes.h:36, from C:/ncs/v3.1.1/zephyr/include/zephyr/kernel.h:17, from C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:14: C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c: In function &amp;#39;configure_tx_pwr_settings&amp;#39;: C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:36: error: &amp;#39;DT_N_NODELABEL_nrf70_P_wifi_max_tx_pwr_2g_dsss&amp;#39; undeclared (first use in this function) 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:5271:29: note: in definition of macro &amp;#39;DT_CAT3&amp;#39; 5271 | #define DT_CAT3(a1, a2, a3) a1 ## a2 ## a3 | ^~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:27: note: in expansion of macro &amp;#39;DT_PROP&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:29: note: in expansion of macro &amp;#39;DT_CAT&amp;#39; 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:35: note: in expansion of macro &amp;#39;DT_NODELABEL&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:566:47: note: in expansion of macro &amp;#39;MAX_TX_PWR&amp;#39; 566 | tx_pwr_ceil_params-&amp;gt;max_pwr_2g_dsss = MAX_TX_PWR(wifi_max_tx_pwr_2g_dsss); | ^~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:36: note: each undeclared identifier is reported only once for each function it appears in 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:5271:29: note: in definition of macro &amp;#39;DT_CAT3&amp;#39; 5271 | #define DT_CAT3(a1, a2, a3) a1 ## a2 ## a3 | ^~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:27: note: in expansion of macro &amp;#39;DT_PROP&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:29: note: in expansion of macro &amp;#39;DT_CAT&amp;#39; 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:35: note: in expansion of macro &amp;#39;DT_NODELABEL&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:566:47: note: in expansion of macro &amp;#39;MAX_TX_PWR&amp;#39; 566 | tx_pwr_ceil_params-&amp;gt;max_pwr_2g_dsss = MAX_TX_PWR(wifi_max_tx_pwr_2g_dsss); | ^~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:36: error: &amp;#39;DT_N_NODELABEL_nrf70_P_wifi_max_tx_pwr_2g_mcs7&amp;#39; undeclared (first use in this function) 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:5271:29: note: in definition of macro &amp;#39;DT_CAT3&amp;#39; 5271 | #define DT_CAT3(a1, a2, a3) a1 ## a2 ## a3 | ^~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:27: note: in expansion of macro &amp;#39;DT_PROP&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:29: note: in expansion of macro &amp;#39;DT_CAT&amp;#39; 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:35: note: in expansion of macro &amp;#39;DT_NODELABEL&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:567:47: note: in expansion of macro &amp;#39;MAX_TX_PWR&amp;#39; 567 | tx_pwr_ceil_params-&amp;gt;max_pwr_2g_mcs7 = MAX_TX_PWR(wifi_max_tx_pwr_2g_mcs7); | ^~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:36: error: &amp;#39;DT_N_NODELABEL_nrf70_P_wifi_max_tx_pwr_2g_mcs0&amp;#39; undeclared (first use in this function) 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:5271:29: note: in definition of macro &amp;#39;DT_CAT3&amp;#39; 5271 | #define DT_CAT3(a1, a2, a3) a1 ## a2 ## a3 | ^~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:27: note: in expansion of macro &amp;#39;DT_PROP&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:196:29: note: in expansion of macro &amp;#39;DT_CAT&amp;#39; 196 | #define DT_NODELABEL(label) DT_CAT(DT_N_NODELABEL_, label) | ^~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:508:35: note: in expansion of macro &amp;#39;DT_NODELABEL&amp;#39; 508 | #define MAX_TX_PWR(label) DT_PROP(DT_NODELABEL(nrf70), label) * 4 | ^~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:568:47: note: in expansion of macro &amp;#39;MAX_TX_PWR&amp;#39; 568 | tx_pwr_ceil_params-&amp;gt;max_pwr_2g_mcs0 = MAX_TX_PWR(wifi_max_tx_pwr_2g_mcs0); | ^~~~~~~~~~ In file included from C:/ncs/v3.1.1/zephyr/include/zephyr/sw_isr_table.h:18, from C:/ncs/v3.1.1/zephyr/include/zephyr/arch/arm/irq.h:19, from C:/ncs/v3.1.1/zephyr/include/zephyr/arch/arm/arch.h:24: C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c: At top level: C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:349:40: error: &amp;#39;DT_N_INST_0_nordic_wlan_FULL_NAME&amp;#39; undeclared here (not in a function); did you mean &amp;#39;DT_N_INST_0_nordic_nrf_kmu&amp;#39;? 349 | #define DT_INST(inst, compat) UTIL_CAT(DT_N_INST, DT_DASH(inst, compat)) | ^~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:1154:25: note: in definition of macro &amp;#39;Z_DEVICE_INIT&amp;#39; 1154 | .name = name_, \ | ^~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:1281:9: note: in expansion of macro &amp;#39;Z_DEVICE_BASE_DEFINE&amp;#39; 1281 | Z_DEVICE_BASE_DEFINE(node_id, dev_id, name, init_fn, deinit_fn, flags, \ | ^~~~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/net_if.h:3441:9: note: in expansion of macro &amp;#39;Z_DEVICE_DEFINE&amp;#39; 3441 | Z_DEVICE_DEFINE(node_id, dev_id, name, init_fn, NULL, \ | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/ethernet.h:1173:9: note: in expansion of macro &amp;#39;Z_NET_DEVICE_INIT_INSTANCE&amp;#39; 1173 | Z_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, instance, \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/ethernet.h:1193:9: note: in expansion of macro &amp;#39;Z_ETH_NET_DEVICE_INIT_INSTANCE&amp;#39; 1193 | Z_ETH_NET_DEVICE_INIT_INSTANCE(node_id, dev_id, name, 0, \ | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/ethernet.h:1267:9: note: in expansion of macro &amp;#39;Z_ETH_NET_DEVICE_INIT&amp;#39; 1267 | Z_ETH_NET_DEVICE_INIT(node_id, Z_DEVICE_DT_DEV_ID(node_id), \ | ^~~~~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/sys/util_internal.h:69:53: note: in expansion of macro &amp;#39;__DEBRACKET&amp;#39; 69 | #define __GET_ARG2_DEBRACKET(ignore_this, val, ...) __DEBRACKET val | ^~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/sys/util_internal.h:64:9: note: in expansion of macro &amp;#39;__GET_ARG2_DEBRACKET&amp;#39; 64 | __GET_ARG2_DEBRACKET(one_or_two_args _if_code, _else_code) | ^~~~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/sys/util_internal.h:59:9: note: in expansion of macro &amp;#39;__COND_CODE&amp;#39; 59 | __COND_CODE(_XXXX##_flag, _if_1_code, _else_code) | ^~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/sys/util_macro.h:204:9: note: in expansion of macro &amp;#39;Z_COND_CODE_1&amp;#39; 204 | Z_COND_CODE_1(_flag, _if_1_code, _else_code) | ^~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:936:9: note: in expansion of macro &amp;#39;COND_CODE_1&amp;#39; 936 | COND_CODE_1(DT_NODE_HAS_PROP(node_id, prop), \ | ^~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:200:9: note: in expansion of macro &amp;#39;DT_PROP_OR&amp;#39; 200 | DT_PROP_OR(node_id, label, DT_NODE_FULL_NAME(node_id)) | ^~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:537:36: note: in expansion of macro &amp;#39;DT_CAT&amp;#39; 537 | #define DT_NODE_FULL_NAME(node_id) DT_CAT(node_id, _FULL_NAME) | ^~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:200:36: note: in expansion of macro &amp;#39;DT_NODE_FULL_NAME&amp;#39; 200 | DT_PROP_OR(node_id, label, DT_NODE_FULL_NAME(node_id)) | ^~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/ethernet.h:1268:31: note: in expansion of macro &amp;#39;DEVICE_DT_NAME&amp;#39; 1268 | DEVICE_DT_NAME(node_id), init_fn, pm, \ | ^~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/ethernet.h:1281:9: note: in expansion of macro &amp;#39;ETH_NET_DEVICE_DT_DEFINE&amp;#39; 1281 | ETH_NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__) | ^~~~~~~~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/sys/util_internal.h:104:26: note: in expansion of macro &amp;#39;UTIL_PRIMITIVE_CAT&amp;#39; 104 | #define UTIL_CAT(a, ...) UTIL_PRIMITIVE_CAT(a, __VA_ARGS__) | ^~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:349:31: note: in expansion of macro &amp;#39;UTIL_CAT&amp;#39; 349 | #define DT_INST(inst, compat) UTIL_CAT(DT_N_INST, DT_DASH(inst, compat)) | ^~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:3909:27: note: in expansion of macro &amp;#39;DT_INST&amp;#39; 3909 | #define DT_DRV_INST(inst) DT_INST(inst, DT_DRV_COMPAT) | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/net/ethernet.h:1281:34: note: in expansion of macro &amp;#39;DT_DRV_INST&amp;#39; 1281 | ETH_NET_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__) | ^~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/fmac_main.c:968:1: note: in expansion of macro &amp;#39;ETH_NET_DEVICE_DT_INST_DEFINE&amp;#39; 968 | ETH_NET_DEVICE_DT_INST_DEFINE(0, | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ [458/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[461/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[463/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[464/557] Building C object zephyr/drivers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/src/wpa_supp_if.c.obj FAILED: zephyr/drivers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/src/wpa_supp_if.c.obj C:\ncs\toolchains\c1a76fddb2\opt\zephyr-sdk\arm-zephyr-eabi\bin\arm-zephyr-eabi-gcc.exe -DKERNEL -DK_HEAP_MEM_POOL_SIZE=30808 -DMBEDTLS_CONFIG_FILE=\&amp;quot;nrf-config.h\&amp;quot; -DMBEDTLS_PSA_CRYPTO_CONFIG_FILE=\&amp;quot; nrf-psa-crypto-config.h\&amp;quot; -DNRF54L_CONFIGURATION_56_ENABLE=0 -DNRF70_2_4G_ONLY -DNRF70_ANT_GAIN_2G=0 -DNRF70_ANT_GAIN_5G_BAND1=0 -DNRF70_ANT_GAIN_5G_BAND2=0 -DNRF70_ANT_GAIN_5G_BAND3=0 -DNRF70_BAND_2G _LOWER_EDGE_BACKOFF_DSSS=0 -DNRF70_BAND_2G_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_2G_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_2G_UPPER_EDGE_BACKOFF_DSSS=0 -DNRF70_BAND_2G_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAN D_2G_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_1_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_1_UPPER_EDGE_BACKOFF_ HT=0 -DNRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2A_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2A_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UN II_2C_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2C_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_2C_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_3_LOWER_EDGE_BACK OFF_HE=0 -DNRF70_BAND_UNII_3_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_3_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_4_LOWER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UN II_4_LOWER_EDGE_BACKOFF_HT=0 -DNRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HE=0 -DNRF70_BAND_UNII_4_UPPER_EDGE_BACKOFF_HT=0 -DNRF70_DATA_TX -DNRF70_LOG_VERBOSE -DNRF70_MAX_TX_PENDING_QLEN=18 -DNRF70_MAX_TX_T OKENS=10 -DNRF70_PCB_LOSS_2G=0 -DNRF70_PCB_LOSS_5G_BAND1=0 -DNRF70_PCB_LOSS_5G_BAND2=0 -DNRF70_PCB_LOSS_5G_BAND3=0 -DNRF70_RPU_PS_IDLE_TIMEOUT_MS=10 -DNRF70_RX_MAX_DATA_SIZE=1600 -DNRF70_RX_NUM_BUFS=1 6 -DNRF70_STA_MODE -DNRF70_SYSTEM_MODE -DNRF70_TCP_IP_CHECKSUM_OFFLOAD -DNRF9160_XXAA -DNRF_SKIP_FICR_NS_COPY_TO_RAM -DNRF_TRUSTZONE_NONSECURE -DNRF_WIFI_AP_DEAD_DETECT_TIMEOUT=20 -DNRF_WIFI_DISPLAY_S CAN_BSS_LIMIT=150 -DNRF_WIFI_IFACE_MTU=1500 -DNRF_WIFI_LOW_POWER -DNRF_WIFI_MAX_PS_POLL_FAIL_CNT=10 -DNRF_WIFI_MGMT_BUFF_OFFLOAD -DNRF_WIFI_PS_INT_PS=y -DNRF_WIFI_RPU_MIN_TIME_TO_ENTER_SLEEP_MS=5000 - DNRF_WIFI_RPU_RECOVERY -DNRF_WIFI_RPU_RECOVERY_PS_ACTIVE_TIMEOUT_MS=50000 -DNRF_WIFI_RX_STBC_HT -DPICOLIBC_DOUBLE_PRINTF_SCANF -DUSE_PARTITION_MANAGER=1 -DWIFI_NRF70_LOG_LEVEL=3 -D__LINUX_ERRNO_EXTENS IONS__ -D__PROGRAM_START -D__ZEPHYR_SUPERVISOR__ -D__ZEPHYR__=1 -IC:/Users/HanXcel/shell/build/shell/zephyr/include/generated/zephyr -IC:/ncs/v3.1.1/zephyr/include -IC:/Users/HanXcel/shell/build/shell /zephyr/include/generated -IC:/ncs/v3.1.1/zephyr/soc/nordic -IC:/ncs/v3.1.1/zephyr/include/zephyr/posix -IC:/ncs/v3.1.1/zephyr/lib/posix/options/getopt -IC:/ncs/v3.1.1/zephyr/soc/nordic/nrf91/. -IC:/n cs/v3.1.1/zephyr/soc/nordic/common/. -IC:/ncs/v3.1.1/zephyr/subsys/net/l2 -IC:/ncs/v3.1.1/zephyr/subsys/net/lib/dns/. -IC:/ncs/v3.1.1/zephyr/subsys/net/conn_mgr/. -IC:/ncs/v3.1.1/zephyr/subsys/setting s/include -IC:/ncs/v3.1.1/zephyr/subsys/shell/modules/kernel_service/thread/.. -IC:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/inc -IC:/ncs/v3.1.1/zephyr/subsys/net/ip -IC:/ncs/v3.1.1/nrf/include -IC:/Us ers/HanXcel/shell/build/shell/tfm/api_ns/interface/include -IC:/Users/HanXcel/shell/build/shell/zephyr/misc/generated -IC:/ncs/v3.1.1/modules/lib/hostap/port/mbedtls -IC:/ncs/v3.1.1/nrf/subsys/setting s/include -IC:/ncs/v3.1.1/nrf/modules/trusted-firmware-m/. -IC:/ncs/v3.1.1/nrf/include/tfm -IC:/ncs/v3.1.1/nrf/tests/include -IC:/ncs/v3.1.1/zephyr/modules/hostap/src -IC:/ncs/v3.1.1/modules/lib/hosta p -IC:/ncs/v3.1.1/modules/lib/hostap/wpa_supplicant -IC:/ncs/v3.1.1/modules/lib/hostap/src -IC:/ncs/v3.1.1/modules/lib/hostap/src/common -IC:/ncs/v3.1.1/modules/lib/hostap/src/eap_common -IC:/ncs/v3.1 .1/modules/lib/hostap/src/eap_server -IC:/ncs/v3.1.1/modules/lib/hostap/src/radius -IC:/ncs/v3.1.1/modules/lib/hostap/src/crypto -IC:/ncs/v3.1.1/modules/lib/hostap/src/ap -IC:/ncs/v3.1.1/modules/lib/h ostap/src/drivers -IC:/ncs/v3.1.1/modules/lib/hostap/src/rsn_supp -IC:/ncs/v3.1.1/modules/hal/cmsis/CMSIS/Core/Include -IC:/ncs/v3.1.1/modules/hal/cmsis_6/CMSIS/Core/Include -IC:/ncs/v3.1.1/zephyr/mod ules/cmsis_6/. -IC:/ncs/v3.1.1/nrf/modules/hal_nordic/. -IC:/ncs/v3.1.1/modules/hal/nordic/nrfx -IC:/ncs/v3.1.1/modules/hal/nordic/nrfx/drivers/include -IC:/ncs/v3.1.1/modules/hal/nordic/nrfx/mdk -IC: /ncs/v3.1.1/zephyr/modules/hal_nordic/nrfx/. -IC:/ncs/v3.1.1/zephyr/modules/nrf_wifi/os -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/os_if/inc -IC:/ncs/v3.1.1/nrfxlib/nrf_modem/include -IC:/Users/HanXcel/shel l/build/shell/generated/interface_nrf_security_psa -IC:/ncs/v3.1.1/nrf/subsys/nrf_security/include -IC:/ncs/v3.1.1/modules/crypto/oberon-psa-crypto/include -IC:/ncs/v3.1.1/nrf/subsys/nrf_security/src/ threading/include -IC:/ncs/v3.1.1/nrf/subsys/nrf_security/src/utils -IC:/ncs/v3.1.1/modules/crypto/oberon-psa-crypto/library -IC:/ncs/v3.1.1/modules/crypto/mbedtls/library -IC:/ncs/v3.1.1/modules/cryp to/mbedtls/include -IC:/ncs/v3.1.1/modules/crypto/mbedtls/include/library -IC:/ncs/v3.1.1/nrfxlib/crypto/nrf_oberon/include -IC:/ncs/v3.1.1/nrfxlib/crypto/nrf_oberon/include/mbedtls -IC:/ncs/v3.1.1/mo dules/lib/nrf_wifi -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/../bus -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/utils/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/bus_if/bus/qspi/inc -IC:/ncs/v3.1.1/modules/lib/nrf_w ifi/bus_if/bal/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_if/umac_if/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_load/mips/fw/inc -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/hw_if/hal/inc -IC:/ncs/v3.1.1/mo dules/lib/nrf_wifi/fw_if/umac_if/inc/fw -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_if/umac_if/inc/fw/stats -IC:/ncs/v3.1.1/modules/lib/nrf_wifi/fw_if/umac_if/inc/fw/stats/system -isystem C:/ncs/v3.1.1/ze phyr/lib/libc/common/include -Wshadow -fno-strict-aliasing -Os -imacros C:/Users/HanXcel/shell/build/shell/zephyr/include/generated/zephyr/autoconf.h -fno-common -g -gdwarf-4 -fdiagnostics-color=alway s -mcpu=cortex-m33 -mthumb -mabi=aapcs -mfp16-format=ieee -mtp=soft --sysroot=C:/ncs/toolchains/c1a76fddb2/opt/zephyr-sdk/arm-zephyr-eabi/arm-zephyr-eabi -imacros C:/ncs/v3.1.1/zephyr/include/zephyr/t oolchain/zephyr_stdint.h -Wall -Wformat -Wformat-security -Wno-format-zero-length -Wdouble-promotion -Wno-pointer-sign -Wpointer-arith -Wexpansion-to-defined -Wno-unused-but-set-variable -Werror=impli cit-int -fno-pic -fno-pie -fno-asynchronous-unwind-tables -ftls-model=local-exec -fno-reorder-functions --param=min-pagesize=0 -fno-defer-pop -fmacro-prefix-map=C:/Users/HanXcel/shell=CMAKE_SOURCE_DIR -fmacro-prefix-map=C:/ncs/v3.1.1/zephyr=ZEPHYR_BASE -fmacro-prefix-map=C:/ncs/v3.1.1=WEST_TOPDIR -ffunction-sections -fdata-sections -specs=picolibc.specs -D_POSIX_THREADS -std=c99 -MD -MT zephyr/dri vers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.dir/src/wpa_supp_if.c.obj -MF zephyr\drivers\wifi\nrf_wifi\CMakeFiles\nrf_wifi.dir\src\wpa_supp_if.c.obj.d -o zephyr/drivers/wifi/nrf_wifi/CMakeFiles/nrf_wifi.di r/src/wpa_supp_if.c.obj -c C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/wpa_supp_if.c In file included from C:/ncs/v3.1.1/zephyr/include/zephyr/toolchain/gcc.h:98, from C:/ncs/v3.1.1/zephyr/include/zephyr/toolchain.h:52, from C:/ncs/v3.1.1/zephyr/include/zephyr/sys/__assert.h:11, from C:/ncs/v3.1.1/zephyr/include/zephyr/irq_multilevel.h:15, from C:/ncs/v3.1.1/zephyr/include/zephyr/devicetree.h:20, from C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:12, from C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/wpa_supp_if.c:13: C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/wpa_supp_if.c: In function &amp;#39;nrf_wifi_wpa_supp_dev_init&amp;#39;: C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:96:41: error: &amp;#39;__device_dts_ord_DT_CHOSEN_zephyr_wifi_ORD&amp;#39; undeclared (first use in this function) 96 | #define DEVICE_NAME_GET(dev_id) _CONCAT(__device_, dev_id) | ^~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/toolchain/common.h:168:26: note: in definition of macro &amp;#39;_DO_CONCAT&amp;#39; 168 | #define _DO_CONCAT(x, y) x ## y | ^ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:96:33: note: in expansion of macro &amp;#39;_CONCAT&amp;#39; 96 | #define DEVICE_NAME_GET(dev_id) _CONCAT(__device_, dev_id) | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:293:37: note: in expansion of macro &amp;#39;DEVICE_NAME_GET&amp;#39; 293 | #define DEVICE_DT_NAME_GET(node_id) DEVICE_NAME_GET(Z_DEVICE_DT_DEV_ID(node_id)) | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:310:34: note: in expansion of macro &amp;#39;DEVICE_DT_NAME_GET&amp;#39; 310 | #define DEVICE_DT_GET(node_id) (&amp;amp;DEVICE_DT_NAME_GET(node_id)) | ^~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/wpa_supp_if.c:450:39: note: in expansion of macro &amp;#39;DEVICE_DT_GET&amp;#39; 450 | const struct device *device = DEVICE_DT_GET(DT_CHOSEN(zephyr_wifi)); | ^~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:96:41: note: each undeclared identifier is reported only once for each function it appears in 96 | #define DEVICE_NAME_GET(dev_id) _CONCAT(__device_, dev_id) | ^~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/toolchain/common.h:168:26: note: in definition of macro &amp;#39;_DO_CONCAT&amp;#39; 168 | #define _DO_CONCAT(x, y) x ## y | ^ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:96:33: note: in expansion of macro &amp;#39;_CONCAT&amp;#39; 96 | #define DEVICE_NAME_GET(dev_id) _CONCAT(__device_, dev_id) | ^~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:293:37: note: in expansion of macro &amp;#39;DEVICE_NAME_GET&amp;#39; 293 | #define DEVICE_DT_NAME_GET(node_id) DEVICE_NAME_GET(Z_DEVICE_DT_DEV_ID(node_id)) | ^~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/include/zephyr/device.h:310:34: note: in expansion of macro &amp;#39;DEVICE_DT_NAME_GET&amp;#39; 310 | #define DEVICE_DT_GET(node_id) (&amp;amp;DEVICE_DT_NAME_GET(node_id)) | ^~~~~~~~~~~~~~~~~~ C:/ncs/v3.1.1/zephyr/drivers/wifi/nrf_wifi/src/wpa_supp_if.c:450:39: note: in expansion of macro &amp;#39;DEVICE_DT_GET&amp;#39; 450 | const struct device *device = DEVICE_DT_GET(DT_CHOSEN(zephyr_wifi)); | ^~~~~~~~~~~~~ [465/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[466/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[467/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[469/557] Building C object modules/nrf/subsys/nrf_security/src/CMakeFiles/mbedcrypto.dir/C_/ncs/v3.1[470/557] Building C object zephyr/drivers/serial/CMakeFiles/drivers__serial.dir/uart_nrfx_uarte.c.obj ninja: build stopped: subcommand failed. FAILED: _sysbuild/sysbuild/images/shell-prefix/src/shell-stamp/shell-build C:/Users/HanXcel/shell/build/_sysbuild/sysbuild/images/shell-prefix/src/shell-stamp/shell-build cmd.exe /C &amp;quot;cd /D C:\Users\HanXcel\shell\build\shell &amp;amp;&amp;amp; C:\ncs\toolchains\c1a76fddb2\opt\bin\cmake.exe --build .&amp;quot; ninja: build stopped: subcommand failed. FATAL ERROR: command exited with status 1: &amp;#39;C:\ncs\toolchains\c1a76fddb2\opt\bin\cmake.EXE&amp;#39; --build C:/Users/HanXcel/shell/build&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: WIFI SCAN cannot build by using nrf9160</title><link>https://devzone.nordicsemi.com/thread/554164?ContentTypeID=1</link><pubDate>Wed, 12 Nov 2025 16:23:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2125d917-ad45-4e6e-a5e9-a5d9d4a4611b</guid><dc:creator>&amp;#216;yvind</dc:creator><description>&lt;p&gt;Hello, can you please provide more information on what the problem is? Please provide build logs, development environment, and how you are building the wifi shell sample. This information is needed for us to understand the issue and to reproduce.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Thanks.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Kind regards,&lt;br /&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>