<?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>NRF54L15: Can&amp;#39;t use any UART other than UART20???</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125809/nrf54l15-can-t-use-any-uart-other-than-uart20</link><description>Dear Nordic Team, 
 I am using NRF54L15 on NRF54 DK board and when trying to use/activate any other UART other than UART20 (e.g. UART21, UART22, UART00) on my project, every time I get the following build error: 
 &amp;quot;Only one of the following peripherals</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 25 Nov 2025 13:38:20 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125809/nrf54l15-can-t-use-any-uart-other-than-uart20" /><item><title>RE: NRF54L15: Can't use any UART other than UART20???</title><link>https://devzone.nordicsemi.com/thread/555387?ContentTypeID=1</link><pubDate>Tue, 25 Nov 2025 13:38:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c763c3f7-029c-4601-9cda-2f75283de764</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello Alex,&lt;/p&gt;
&lt;p&gt;If you are using the nRF54l15DK as your build target there are some default assignments. For instance, SPIM00 (shared instance with UARTE00) is assigned to the &lt;a href="https://docs.nordicsemi.com/bundle/ug_nrf54l15_dk/page/UG/nRF54L15_DK/hw_desription/external_memory.html"&gt;onboard SPI flash&lt;/a&gt;:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1764076360503v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;To use this serial interface for UARTE instead you would need to disable the SPI00 node in the devictree and use the board configurator app to re-route the IO pins from the SPI flash to the pin headers. Here is an example of a devictree overlay that enables UART00 and UART30:&lt;/p&gt;
&lt;p&gt;nrf54l15dk_nrf54l15_cpuapp.overlay&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;spi00 {
    status = &amp;quot;disabled&amp;quot;;
};

// High speed UART intstance
&amp;amp;uart00 {
    status = &amp;quot;okay&amp;quot;;
    current-speed = &amp;lt;115200&amp;gt;;
	pinctrl-0 = &amp;lt;&amp;amp;uart00_default&amp;gt;;
	pinctrl-1 = &amp;lt;&amp;amp;uart00_sleep&amp;gt;;
    pinctrl-names = &amp;quot;default&amp;quot;, &amp;quot;sleep&amp;quot;;
};


&amp;amp;uart30 {
    status = &amp;quot;okay&amp;quot;;
};


&amp;amp;pinctrl {
    	uart00_default: uart00_default {
		group1 {
			psels = &amp;lt;NRF_PSEL(UART_TX, 2, 1)&amp;gt;;
		};
        group2 { 
			psels = &amp;lt;NRF_PSEL(UART_RX, 2, 2)&amp;gt;;
            bias-pull-up;
		};
            
	};

	uart00_sleep: uart00_sleep {
		group1 {
			psels = &amp;lt;NRF_PSEL(UART_TX, 2, 1)&amp;gt;,
				&amp;lt;NRF_PSEL(UART_RX, 2, 2)&amp;gt;;
				low-power-enable;
		};
	};
};
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Vidar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>