<?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>POF configuration when using soft device</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/36030/pof-configuration-when-using-soft-device</link><description>Hi, 
 I&amp;#39;m using nrf52840, 
 I&amp;#39;m using SDK 15. 
 I can see that in nrf_drv_power_pof_init function only few power setting are allowed - is that true? can I only use those values which are in this function? 
 Also, is there any clear example dealing with</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 04 Jul 2018 07:21:17 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/36030/pof-configuration-when-using-soft-device" /><item><title>RE: POF configuration when using soft device</title><link>https://devzone.nordicsemi.com/thread/138889?ContentTypeID=1</link><pubDate>Wed, 04 Jul 2018 07:21:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:59469c97-f3cc-4cc1-9c11-3c66ea6f1b95</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Yes, latest softdevice versions supports it, so modifying library that uses softdevice API should support more values.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: POF configuration when using soft device</title><link>https://devzone.nordicsemi.com/thread/138879?ContentTypeID=1</link><pubDate>Wed, 04 Jul 2018 05:36:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0b1fa85e-b420-4362-823b-68be662d0faf</guid><dc:creator>Lior Smila</dc:creator><description>&lt;p&gt;Thanks, I saw that in the code, yet is this an official answer from Nordic? can I be positive that those values are supported?&lt;/p&gt;
&lt;p&gt;In the code you can fine this note:&lt;/p&gt;
&lt;p&gt;/* Currently when SD is enabled - the configuration can be changed&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * in very limited range.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; * It is the SoftDevice limitation.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;???&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Lior.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: POF configuration when using soft device</title><link>https://devzone.nordicsemi.com/thread/138842?ContentTypeID=1</link><pubDate>Tue, 03 Jul 2018 19:23:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d77514e0-a7ae-4aa2-a2cf-f8197b1ce8d0</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;It looks like the underlying softdevice call&amp;nbsp;sd_power_pof_threshold_set supports all the below thresholds as mentioned in nrf_soc.h file&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/**@brief Power failure thresholds */
enum NRF_POWER_THRESHOLDS
{
  NRF_POWER_THRESHOLD_V17 = 4UL, /**&amp;lt; 1.7 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V18,       /**&amp;lt; 1.8 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V19,       /**&amp;lt; 1.9 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V20,       /**&amp;lt; 2.0 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V21,       /**&amp;lt; 2.1 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V22,       /**&amp;lt; 2.2 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V23,       /**&amp;lt; 2.3 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V24,       /**&amp;lt; 2.4 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V25,       /**&amp;lt; 2.5 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V26,       /**&amp;lt; 2.6 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V27,       /**&amp;lt; 2.7 Volts power failure threshold. */
  NRF_POWER_THRESHOLD_V28        /**&amp;lt; 2.8 Volts power failure threshold. */
};
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;So this can only mean that&amp;nbsp;&lt;strong&gt;nrf_drv_power_pof_init&lt;/strong&gt; has not implemented the rest of the thresholds. You can add them yourself as the thresholds are already defined in nrf_power.h file. It is just the matter of you extending the switch cases in the function&amp;nbsp;&lt;strong&gt;nrf_drv_power_pof_init&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>