<?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>Pin Assignment Overwrite for adc</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/110538/pin-assignment-overwrite-for-adc</link><description>I want to read data from 8 channels of ADC, when configuring all channels it shows that some of the pins are pre-occupied by other nodes. i have applied different things to resolve this issue including these , but an error occurred, kindly tell me how</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 03 May 2024 10:32:04 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/110538/pin-assignment-overwrite-for-adc" /><item><title>RE: Pin Assignment Overwrite for adc</title><link>https://devzone.nordicsemi.com/thread/481746?ContentTypeID=1</link><pubDate>Fri, 03 May 2024 10:32:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ecadf4da-0a8d-4b07-bfab-0ddfc9fbfd34</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;I don&amp;#39;t trust the &amp;quot;Problems&amp;quot; tab in VS Code, as this doesn&amp;#39;t necessarily pick up all the configurations for the project. Does the build log mention any errors? Does the log when running the application mention any errors? Does it work with all 8 channels?&lt;/p&gt;
&lt;p&gt;BR,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pin Assignment Overwrite for adc</title><link>https://devzone.nordicsemi.com/thread/481586?ContentTypeID=1</link><pubDate>Thu, 02 May 2024 14:02:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2741cfc5-51c7-4192-83bd-87bc79361618</guid><dc:creator>fatimatayyab71</dc:creator><description>&lt;p&gt;I have tried it, it do not through any build error but there are some overlapping and unknown node problems in the problem window. can you please help me how to resolve this?....or does this cause any issue in communication?&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/Overlay-problem.png" /&gt;&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pin Assignment Overwrite for adc</title><link>https://devzone.nordicsemi.com/thread/481026?ContentTypeID=1</link><pubDate>Mon, 29 Apr 2024 09:26:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:307dbdf8-6137-48cc-a9ec-5a05361a120d</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Ok, I see. I believe the issue is that what you are trying to delete is a property, and not a node. So either you can delete the uart0 node:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/ {
    pinctrl: pin-controller{
        /delete-node/ uart0;
    };
    
    zephyr,user {
		io-channels = &amp;lt;&amp;amp;adc 0&amp;gt;, &amp;lt;&amp;amp;adc 1&amp;gt;, &amp;lt;&amp;amp;adc 2&amp;gt;, &amp;lt;&amp;amp;adc 3&amp;gt;, &amp;lt;&amp;amp;adc 4&amp;gt;, &amp;lt;&amp;amp;adc 5&amp;gt;, &amp;lt;&amp;amp;adc 6&amp;gt;,  &amp;lt;&amp;amp;adc 7&amp;gt;;
	};
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Or you can delete the uart0_default and uart0_sleep properties:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/ {
    pinctrl: pin-controller{
        /delete-property/ uart0_default;
        /delete-property/ uart0_sleep;
    };
    
    zephyr,user {
		io-channels = &amp;lt;&amp;amp;adc 0&amp;gt;, &amp;lt;&amp;amp;adc 1&amp;gt;, &amp;lt;&amp;amp;adc 2&amp;gt;, &amp;lt;&amp;amp;adc 3&amp;gt;, &amp;lt;&amp;amp;adc 4&amp;gt;, &amp;lt;&amp;amp;adc 5&amp;gt;, &amp;lt;&amp;amp;adc 6&amp;gt;,  &amp;lt;&amp;amp;adc 7&amp;gt;;
	};
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Also note that I removed the &amp;#39;&amp;amp;&amp;#39; before &amp;quot;uart0&amp;quot; in all cases.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;When doing these changes, it builds here.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pin Assignment Overwrite for adc</title><link>https://devzone.nordicsemi.com/thread/480754?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 15:39:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b8d7a39b-2dd1-4ac4-ba6a-8de3514d130e</guid><dc:creator>fatimatayyab71</dc:creator><description>&lt;p&gt;Yes, I am using the same sample. I had also copied the nrf52840 overlay file for nrf52832.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/adc_5F00_ble.zip"&gt;devzone.nordicsemi.com/.../adc_5F00_ble.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Pin Assignment Overwrite for adc</title><link>https://devzone.nordicsemi.com/thread/480622?ContentTypeID=1</link><pubDate>Thu, 25 Apr 2024 09:09:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d905397d-fc0d-4832-bb5e-6eaed557626a</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;There is a sample found in:&lt;/p&gt;
&lt;p&gt;ncs\zephyr\samples\drivers\adc\&lt;/p&gt;
&lt;p&gt;that is set up pretty much like you did here. I can&amp;#39;t spot any immediate errors from what you have included here (other than the build log, of course), but does this sample work if you try to build it? Remember to copy the nrf52840dk_nrf52840.overlay file found in adc\boards and name it nrf52dk_nrf52832.overlay.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If you are still stuck, can you please .zip and upload your application folder here?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Edvin&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>