<?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 Pin 11 (P0.09) and Pin 12 (P0.10) is only 3.0V</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/42990/nrf52832-pin-11-p0-09-and-pin-12-p0-10-is-only-3-0v</link><description>Hi there, 
 We are using the nRF52832 on our PCB design. We built the first batch and it was working fine, we built a second batch and all the boards are having issues. 
 We first thought it could be a PCB issue but finally narrowed the problem down to</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 24 Jan 2019 21:26:42 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/42990/nrf52832-pin-11-p0-09-and-pin-12-p0-10-is-only-3-0v" /><item><title>RE: nRF52832 Pin 11 (P0.09) and Pin 12 (P0.10) is only 3.0V</title><link>https://devzone.nordicsemi.com/thread/167775?ContentTypeID=1</link><pubDate>Thu, 24 Jan 2019 21:26:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f14b1981-86d2-495e-9873-9467b1d711bd</guid><dc:creator>klm19</dc:creator><description>&lt;p&gt;Thank you. We were aware of it and made the change in the project but it seem to have gotten removed. Everything works now!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 Pin 11 (P0.09) and Pin 12 (P0.10) is only 3.0V</title><link>https://devzone.nordicsemi.com/thread/167770?ContentTypeID=1</link><pubDate>Thu, 24 Jan 2019 20:15:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d19c1a79-7890-4f13-8fec-b35a1ea03866</guid><dc:creator>hmolesworth</dc:creator><description>&lt;p&gt;You don&amp;#39;t mention whether you are aware that P0.09 and P0.10 default to NFC mode; there are several posts here discussing this issue, try&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/26336/nrf52832-p0-09-10-gpios"&gt;this link&lt;/a&gt;. Code in system_nrf52.c will need to generate something like this (which only executes once so can also be done by other means):&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)
        if ((NRF_UICR-&amp;gt;NFCPINS &amp;amp; UICR_NFCPINS_PROTECT_Msk) == (UICR_NFCPINS_PROTECT_NFC &amp;lt;&amp;lt; UICR_NFCPINS_PROTECT_Pos)){
            NRF_NVMC-&amp;gt;CONFIG = NVMC_CONFIG_WEN_Wen &amp;lt;&amp;lt; NVMC_CONFIG_WEN_Pos; // Write Enable
            while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy){}
            NRF_UICR-&amp;gt;NFCPINS &amp;amp;= ~UICR_NFCPINS_PROTECT_Msk;
            while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy){}
            NRF_NVMC-&amp;gt;CONFIG = NVMC_CONFIG_WEN_Ren &amp;lt;&amp;lt; NVMC_CONFIG_WEN_Pos; // Read-only Enable
            while (NRF_NVMC-&amp;gt;READY == NVMC_READY_READY_Busy){}
            // UICR changes require a reset to be effective
            NVIC_SystemReset();
        }
    #endif
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;From the datasheet:&lt;/p&gt;
&lt;p&gt;For information on how to configure these pins as normal GPIOs, see NFCT &amp;mdash; Near field communication tag&amp;nbsp;on page 416 and UICR &amp;mdash; User information configuration registers on page 54. Note that the device will&amp;nbsp;not be protected against strong NFC field damage if the pins are configured as GPIO and an NFC antenna&amp;nbsp;is connected to the device. The pins will always be configured as NFC pins during power-on reset until the&amp;nbsp;configuration is set according to the UICR register.&lt;br /&gt;&lt;strong&gt;&lt;em&gt;These two pins will have some limitations when configured as GPIO.&lt;/em&gt;&lt;/strong&gt; The pin capacitance will be higher on&amp;nbsp;these pins, and there is some current leakage between the two pins if they are driven to different logical&amp;nbsp;values. To avoid leakage between the pins when configured as GPIO, these GPIOs should always be at the&amp;nbsp;same logical value whenever entering one of the device power saving modes. See Electrical specification.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>