<?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>nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/65347/nrf52810-p0-14-out-of-control</link><description>hi, 
 I found a interesting thing：I use the output function to configure the P0.14（nrf_gpio_cfg_output(14)）. After configuration, the normal output should be low, but it outputs high. Can you explain. 
 another question：Some pins are high by default（for</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 02 Sep 2020 11:48:16 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/65347/nrf52810-p0-14-out-of-control" /><item><title>RE: nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/thread/267616?ContentTypeID=1</link><pubDate>Wed, 02 Sep 2020 11:48:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:89df1b31-59cf-4e2a-9217-21a9099207e7</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Good to hear you found the issue&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f642.svg" title="Slight smile"&gt;&amp;#x1f642;&lt;/span&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That explains why the pin got set before the application could run ;)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/thread/267584?ContentTypeID=1</link><pubDate>Wed, 02 Sep 2020 10:04:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:01c1984f-2bd0-4c44-b275-751d51eaa938</guid><dc:creator>Ryon_pan</dc:creator><description>&lt;p&gt;very sorry,I pulled up these pins in the bootloader.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/thread/267556?ContentTypeID=1</link><pubDate>Wed, 02 Sep 2020 08:45:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:75a05f34-000e-4952-bb30-26f23e184335</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I just tried it with an nRF52811 device, which is very similar to the nRF52810, and see no problems. I configure P0.14 as an output at the start of the application, and verify with a multimeter that the pin is low.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I ran the following simple code to test this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;int main(void)
{
    nrf_gpio_cfg_output(14);
    nrf_gpio_cfg_output(17);
    nrf_gpio_cfg_output(18);

    while (true)
    {
        nrf_delay_ms(500);
        nrf_gpio_pin_toggle(18);
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;If you test the same code, will the issue remain?&lt;/p&gt;
&lt;p&gt;To clarify, you&amp;#39;re testing this on your own hardware?&lt;/p&gt;
&lt;p&gt;Do you have more than one board to test with?&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/thread/267325?ContentTypeID=1</link><pubDate>Tue, 01 Sep 2020 01:15:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b07bbe4f-5485-421c-9861-c8ea03914185</guid><dc:creator>Ryon_pan</dc:creator><description>&lt;p&gt;yes,the pins should default to low when configured as outputs,but pin 14(nRF52810) is high when configured as output,you can try.That&amp;#39;s why I want to ask you.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;My hardware is as follows：LED5 is pin 14.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1598922790806v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;Is the SDK set to high by default&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/thread/267205?ContentTypeID=1</link><pubDate>Mon, 31 Aug 2020 11:39:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:39621566-8c67-46fd-9937-1d791b5e8e78</guid><dc:creator>ovrebekk</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The pins should default to low when configured as outputs.&lt;/p&gt;
&lt;p&gt;Can you check the state of the NRF_GPIO-&amp;gt;OUT register after reset and see what it is configured to?&lt;/p&gt;
&lt;p&gt;What kind of hardware&amp;nbsp;board or module are you using?&lt;/p&gt;
&lt;p&gt;Best regards&lt;br /&gt;Torbjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52810 P0.14 out of control</title><link>https://devzone.nordicsemi.com/thread/267003?ContentTypeID=1</link><pubDate>Fri, 28 Aug 2020 12:26:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:27afb088-d07d-46b1-bec7-27923874cb02</guid><dc:creator>SKR</dc:creator><description>&lt;p&gt;Use &amp;quot;nrf_gpio_pin_clear(14);&amp;quot; after configuration to set pin 14 to low.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Configure unused pins as outputs and put them to low (good practice). If there is nothing attached to them to draw current, they will not consume power, no matter the state.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>