<?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>Configuring PIN P2.07 as UART RX for nrf54l15 custom board</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/122590/configuring-pin-p2-07-as-uart-rx-for-nrf54l15-custom-board</link><description>Hello Team, 
 I want to configure P2.07 as UART RX for my custom board. 
 But when I clear the already assigned property as led2 for this pins from the pin editor gui, I am getting below error. 
 
 How can I solve this? I don&amp;#39;t want to use P2.07 as led</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 03 Jul 2025 06:43:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/122590/configuring-pin-p2-07-as-uart-rx-for-nrf54l15-custom-board" /><item><title>RE: Configuring PIN P2.07 as UART RX for nrf54l15 custom board</title><link>https://devzone.nordicsemi.com/thread/541258?ContentTypeID=1</link><pubDate>Thu, 03 Jul 2025 06:43:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a57c0733-6867-4784-83c3-3989e4257085</guid><dc:creator>payalD</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/ {
    aliases {
        /delete-property/ led2;
    };
    
};
/delete-node/ &amp;amp;led2;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;This worked for me.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Configuring PIN P2.07 as UART RX for nrf54l15 custom board</title><link>https://devzone.nordicsemi.com/thread/540878?ContentTypeID=1</link><pubDate>Mon, 30 Jun 2025 13:24:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:230b0779-a604-4219-917c-c37f22845a2d</guid><dc:creator>payalD</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I tried the suggested way to delete the node for LED, but getting the following error&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;FATAL ERROR: command exited with status 1: &amp;#39;C:\ncs\toolchains\b620d30767\opt\bin\cmake.EXE&amp;#39; -DWEST_PYTHON=C:/ncs/toolchains/b620d30767/opt/bin/python.exe &amp;#39;-Bc:\Payal\Project\test\test_base_fw_logs_ble\test_base_fw\Code\build&amp;#39; -GNinja -DBOARD=nrf54l15dk/nrf54l15/cpuapp -DNCS_TOOLCHAIN_VERSION=NONE -DBOARD_ROOT=c:/payal/project/test/test_base_fw_logs_ble/test_base_fw/code &amp;#39;-SC:\ncs\v2.9.0\zephyr\share\sysbuild&amp;#39; &amp;#39;-DAPP_DIR:PATH=c:\Payal\Project\test\test_base_fw_logs_ble\test_base_fw\Code&amp;#39;&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Configuring PIN P2.07 as UART RX for nrf54l15 custom board</title><link>https://devzone.nordicsemi.com/thread/540844?ContentTypeID=1</link><pubDate>Mon, 30 Jun 2025 11:07:20 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:31ceb77e-5d68-4a20-987e-d530d94d1d7c</guid><dc:creator>Kazi Afroza Sultana</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;You need to delete the LED (led2) node and aliases entirely in the devicetree.&amp;nbsp;&lt;span&gt;The error you are seeing occurs because the&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;gpio-leds&lt;/code&gt;&lt;span&gt;&amp;nbsp;binding requires the&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;gpios&lt;/code&gt;&lt;span&gt;&amp;nbsp;property for each LED node, and simply deleting the&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;gpios&lt;/code&gt;&lt;span&gt;&amp;nbsp;property from&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;led2&lt;/code&gt;&lt;span&gt;&amp;nbsp;(or&amp;nbsp;&lt;/span&gt;&lt;code dir="ltr"&gt;led_1&lt;/code&gt;&lt;span&gt;&amp;nbsp;in your case) leaves the node incomplete, causing a Devicetree validation error.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Try the following way to delete the node for LED&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;/ {
    aliases {
        /delete-property/ led2;  // or led_1, depending on your alias naming
    };
    /delete-node/ &amp;amp;led2;        // or &amp;amp;led_1, depending on your node naming
};&lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>