<?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 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/85421/nrf52810-softdevice-s112-gpio-p14-outset-failure-after-sd-enabled</link><description>I think I may have found errata. Using the combination in the title I can enable output, verified at the pin using OUTSET. Once the softdevice is enabled the same command fails to set the pin. You can see this in the screenshot where I&amp;#39;ve moved it below</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 09 Mar 2022 11:48:04 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/85421/nrf52810-softdevice-s112-gpio-p14-outset-failure-after-sd-enabled" /><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/357129?ContentTypeID=1</link><pubDate>Wed, 09 Mar 2022 11:48:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d52327a7-e119-4f15-b032-cb4812b8c5a8</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t see clear connection between the LFCLK and the GPIO peripheral. It&amp;#39;s not a requirement to start the LF clock before setting a GPIO pin.&lt;/p&gt;
&lt;p&gt;regards&lt;br /&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/356835?ContentTypeID=1</link><pubDate>Tue, 08 Mar 2022 10:34:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:06a9d9e5-c767-404f-a9ce-cc79675fcabb</guid><dc:creator>snoopy20</dc:creator><description>&lt;p&gt;Yes physically measuring on the pin. Nothing of relevance (no sink) attached to the pin. It was literally do the set above the BLE command and it would work, move it one line below and it wouldn&amp;#39;t.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ve since changed the BLE code around a bit and initially it now appears to be working, which I can&amp;#39;t explain at all, but I have a further testing on it later today.&lt;br /&gt;&lt;br /&gt;I wonder if GPIO won&amp;#39;t set without something the BLE controls, specially I&amp;#39;m thinking that BLE starts LF clock. This is the one change I have made since, I was relying on BLE to start this clock but I&amp;#39;m using RTC1 outside of BLE control so now start LF manually.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/356828?ContentTypeID=1</link><pubDate>Tue, 08 Mar 2022 10:18:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f6ac104-6774-48d6-a338-d51ca519f658</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I tried this and it worked fine after enabling the BLE stack:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;    NRF_GPIO-&amp;gt;PIN_CNF[14] = (GPIO_PIN_CNF_DIR_Output &amp;lt;&amp;lt; GPIO_PIN_CNF_DIR_Pos)
                               | (GPIO_PIN_CNF_INPUT_Disconnect &amp;lt;&amp;lt; GPIO_PIN_CNF_INPUT_Pos)
                               | (GPIO_PIN_CNF_PULL_Disabled &amp;lt;&amp;lt; GPIO_PIN_CNF_PULL_Pos)
                               | (GPIO_PIN_CNF_DRIVE_S0S1 &amp;lt;&amp;lt; GPIO_PIN_CNF_DRIVE_Pos)
                               | (GPIO_PIN_CNF_SENSE_Disabled &amp;lt;&amp;lt; GPIO_PIN_CNF_SENSE_Pos);



  NRF_GPIO-&amp;gt;OUTSET = 1 &amp;lt;&amp;lt; 14;
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Are you measuring physically on the pad of the pin? What voltage do you measure? Is there anything else connected to the pin?&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/356552?ContentTypeID=1</link><pubDate>Mon, 07 Mar 2022 11:43:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8693146e-6021-48f7-8e11-42526260bd0a</guid><dc:creator>snoopy20</dc:creator><description>&lt;p&gt;Hi, no pull-ups/downs.&lt;br /&gt;&lt;br /&gt;I am using direct commands not sdk. These are the two relevant sets.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;  NRF_GPIO-&amp;gt;PIN_CNF[CFG_PIN_SYSTEM_ACTIVE] = pinDisconnectInputBuffer | (GPIO_PIN_CNF_DIR_Output &amp;lt;&amp;lt; GPIO_PIN_CNF_DIR_Pos) | (GPIO_PIN_CNF_DRIVE_S0S1 &amp;lt;&amp;lt; GPIO_PIN_CNF_DRIVE_Pos);
  
  NRF_GPIO-&amp;gt;OUTSET = 1 &amp;lt;&amp;lt; CFG_PIN_SYSTEM_ACTIVE;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;I&amp;#39;m using a custom pre-production board but that&amp;#39;s not relevant.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/356524?ContentTypeID=1</link><pubDate>Mon, 07 Mar 2022 10:03:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:944eb05e-6fda-4c79-824b-82d71dccc531</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi there,&lt;/p&gt;
&lt;p&gt;Are you using a custom board or a development kit? If the former, is there any external pullups or pulldowns connected to the pin? The correct way of setting a pin:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;nrf_gpio_cfg_output(pin);
nrf_gpio_pin_set(pin);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/356427?ContentTypeID=1</link><pubDate>Sat, 05 Mar 2022 09:18:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8721402f-bffe-44a9-8bba-3df2bac21f42</guid><dc:creator>snoopy20</dc:creator><description>&lt;p&gt;I don&amp;#39;t see any errors, but there&amp;#39;s no output on the pin when attempting to set after enabling SD.&lt;br /&gt;&lt;br /&gt;Versions - SD7.2, SDK 16&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF52810 Softdevice S112, GPIO P14 OUTSET failure after SD enabled</title><link>https://devzone.nordicsemi.com/thread/356251?ContentTypeID=1</link><pubDate>Fri, 04 Mar 2022 10:18:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b119ea0-00c1-4ec6-8ddb-af3377fd0bf8</guid><dc:creator>Jared</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Exactly what error do you get? I tried reproducing this but wasn&amp;#39;t able to see any errors. Also, what SDK and Softdevice version are you using?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;regards&lt;/p&gt;
&lt;p&gt;Jared&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>