<?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>nRF52832</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/111934/nrf52832</link><description>Hi, I developed a custom board and I am able to toggle other IO pins but somehow pin 10, 9 wasn&amp;#39;t working. After some research, I found that NFC must be disabled to make it work. I did the following steps but still not able to make it work. Can someone</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 10 Jun 2024 18:34:17 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/111934/nrf52832" /><item><title>RE: nRF52832</title><link>https://devzone.nordicsemi.com/thread/488180?ContentTypeID=1</link><pubDate>Mon, 10 Jun 2024 18:34:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ee549541-0afe-467e-9773-3b43a5f73b5a</guid><dc:creator>alleekhaan</dc:creator><description>&lt;p&gt;Hi &lt;span style="background-color:#eeeeee;"&gt;&lt;a href="https://devzone.nordicsemi.com/members/hmolesworth"&gt;hmolesworth&lt;/a&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Thanks for your feedback.&lt;br /&gt;It worked. I changed as you explained in the above message.&lt;br /&gt;Thanks for your help&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832</title><link>https://devzone.nordicsemi.com/thread/487999?ContentTypeID=1</link><pubDate>Sun, 09 Jun 2024 15:47:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e04cb4d0-a331-47a3-815e-7436f4d79d32</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;The directive&amp;nbsp;should be applied to the whole project, not just main.c. In the top left part of the explorer window in SES select the project (instead of main.c), &lt;em&gt;right-click-&amp;gt;Options&lt;/em&gt;. Now in top-left drop-down box select &amp;quot;Common&amp;quot; instead of &amp;quot;Debug&amp;quot;. Now select Preprocessor and add the definition the same as you tried earleir for main.c; this definition will now apply to all files within the project&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832</title><link>https://devzone.nordicsemi.com/thread/487989?ContentTypeID=1</link><pubDate>Sun, 09 Jun 2024 06:07:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f8e23cc4-af82-4e42-a902-0e8d4e5cbfaf</guid><dc:creator>alleekhaan</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/hmolesworth"&gt;hmolesworth&lt;/a&gt;&amp;nbsp;&lt;br /&gt;Can you elaborate it further?&lt;br /&gt;I am literally new to this platform.&lt;br /&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/5037.Screenshot_5F00_12.png" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I also tested the same code on nRF52 DVK and i noticed it is not toggling there as well.&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832</title><link>https://devzone.nordicsemi.com/thread/487980?ContentTypeID=1</link><pubDate>Sat, 08 Jun 2024 15:43:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:df80c613-4a65-479e-a942-f432ff574951</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;Suggest remove the definition from &amp;quot;Debug&amp;quot; and instead apply to &amp;quot;Common&amp;quot; as the definition is then inherited by both Debug and Release build. Also remove from main().&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/pastedimage1717861382229v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;Search for&amp;nbsp;CONFIG_NFCT_PINS_AS_GPIOS to ensure it is acted upon typically in system_nrf52.c:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    /* Configure NFCT pins as GPIOs if NFCT is not to be used in your code. If CONFIG_NFCT_PINS_AS_GPIOS is not defined,
       two GPIOs (see Product Specification to see which ones) will be reserved for NFC and will not be available as
       normal GPIOs. */
    #if defined (CONFIG_NFCT_PINS_AS_GPIOS) &amp;amp;&amp;amp; defined(NFCT_PRESENT)
        if ((NRF_UICR-&amp;gt;NFCPINS &amp;amp; UICR_NFCPINS_PROTECT_Msk) == (UICR_NFCPINS_PROTECT_NFC &amp;lt;&amp;lt; UICR_NFCPINS_PROTECT_Pos)){
            nvmc_config(NVMC_CONFIG_WEN_Wen);
            NRF_UICR-&amp;gt;NFCPINS &amp;amp;= ~UICR_NFCPINS_PROTECT_Msk;
            nvmc_wait();
            nvmc_config(NVMC_CONFIG_WEN_Ren);
            NVIC_SystemReset();
        }
    #endif
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>