<?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>Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/65904/current-consumption-of-320ua-after-ble-advertising-stopped</link><description>My custom board with NRF52810 doesn&amp;#39;t have an external LF clock, so I am using Synthesised Option. 
 as per my knowledge clock source will take 320 uA (~200 uA for HF clock and remaining for Lf clock circuitry) 
 but after stopping BLE advertising it</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 16 Sep 2020 08:32:52 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/65904/current-consumption-of-320ua-after-ble-advertising-stopped" /><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269783?ContentTypeID=1</link><pubDate>Wed, 16 Sep 2020 08:32:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a0e3d8b3-9acf-4a41-aad4-14c42b485380</guid><dc:creator>Surya</dc:creator><description>&lt;p&gt;i am using pwr_mgmt_run()&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269773?ContentTypeID=1</link><pubDate>Wed, 16 Sep 2020 07:47:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:743b5990-ddc0-4207-8c5d-9d57bbd6c948</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;130 uA is a bit unusual. I can&amp;#39;t think of anything obvious that would lead to this base current. Are you using the same code as you described here: &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/65061/power-consumption-of-180-ua-during-low-power-system-on"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/65061/power-consumption-of-180-ua-during-low-power-system-on&lt;/a&gt; &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269758?ContentTypeID=1</link><pubDate>Wed, 16 Sep 2020 06:26:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3e61c525-07e8-4fcc-b3f9-e9b9ea6a910e</guid><dc:creator>Surya</dc:creator><description>&lt;p&gt;I am unable to find out which causing power consumption. can you point out possible sources of current 125 uA to 130 uA&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269551?ContentTypeID=1</link><pubDate>Tue, 15 Sep 2020 08:00:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6bb4dc47-7105-4fa4-8e41-bc9662d58a29</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;You should get around 2uA in System ON idle with the RC running and Softdevice enabled, so I think it must be something else. &lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269549?ContentTypeID=1</link><pubDate>Tue, 15 Sep 2020 07:57:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eba80d9a-fc7e-42c7-b000-7225f09cba60</guid><dc:creator>Surya</dc:creator><description>&lt;p&gt;I tried with the above settings, my code running without any issues but current consumption is 130 uA even I disabled the soft device.&lt;/p&gt;
&lt;p&gt;1. is it current drawn by RC ?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2. how to stop it ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269522?ContentTypeID=1</link><pubDate>Tue, 15 Sep 2020 06:49:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e39cc293-4952-4797-b561-597388bfbf55</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Did you use the following clock settings when you enabled the Softdevice?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// &amp;lt;/h&amp;gt; 
//==========================================================

// &amp;lt;h&amp;gt; Clock - SoftDevice clock configuration

//==========================================================
// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_SRC  - SoftDevice clock source.
 
// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_SRC_RC 
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_SRC_XTAL 
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_SRC_SYNTH 

#ifndef NRF_SDH_CLOCK_LF_SRC
#define NRF_SDH_CLOCK_LF_SRC 0
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_RC_CTIV - SoftDevice calibration timer interval. 
#ifndef NRF_SDH_CLOCK_LF_RC_CTIV
#define NRF_SDH_CLOCK_LF_RC_CTIV 16
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_RC_TEMP_CTIV - SoftDevice calibration timer interval under constant temperature. 
// &amp;lt;i&amp;gt; How often (in number of calibration intervals) the RC oscillator shall be calibrated
// &amp;lt;i&amp;gt;  if the temperature has not changed.

#ifndef NRF_SDH_CLOCK_LF_RC_TEMP_CTIV
#define NRF_SDH_CLOCK_LF_RC_TEMP_CTIV 2
#endif

// &amp;lt;o&amp;gt; NRF_SDH_CLOCK_LF_ACCURACY  - External clock accuracy used in the LL to compute timing.
 
// &amp;lt;0=&amp;gt; NRF_CLOCK_LF_ACCURACY_250_PPM 
// &amp;lt;1=&amp;gt; NRF_CLOCK_LF_ACCURACY_500_PPM 
// &amp;lt;2=&amp;gt; NRF_CLOCK_LF_ACCURACY_150_PPM 
// &amp;lt;3=&amp;gt; NRF_CLOCK_LF_ACCURACY_100_PPM 
// &amp;lt;4=&amp;gt; NRF_CLOCK_LF_ACCURACY_75_PPM 
// &amp;lt;5=&amp;gt; NRF_CLOCK_LF_ACCURACY_50_PPM 
// &amp;lt;6=&amp;gt; NRF_CLOCK_LF_ACCURACY_30_PPM 
// &amp;lt;7=&amp;gt; NRF_CLOCK_LF_ACCURACY_20_PPM 
// &amp;lt;8=&amp;gt; NRF_CLOCK_LF_ACCURACY_10_PPM 
// &amp;lt;9=&amp;gt; NRF_CLOCK_LF_ACCURACY_5_PPM 
// &amp;lt;10=&amp;gt; NRF_CLOCK_LF_ACCURACY_2_PPM 
// &amp;lt;11=&amp;gt; NRF_CLOCK_LF_ACCURACY_1_PPM 

#ifndef NRF_SDH_CLOCK_LF_ACCURACY
#define NRF_SDH_CLOCK_LF_ACCURACY 1
#endif
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269517?ContentTypeID=1</link><pubDate>Tue, 15 Sep 2020 06:38:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9b1984d8-b425-4ca5-a467-2160af6c9618</guid><dc:creator>Surya</dc:creator><description>&lt;p&gt;with RC LF clock, i was able to init ble but when i am bond with android mobile i unable to do.&lt;/p&gt;
&lt;p&gt;I got the following events,&lt;/p&gt;
&lt;p&gt;BLE_GAP_EVT_CONNECTED&lt;/p&gt;
&lt;p&gt;BLE_GAP_EVT_DISCONNECTED&lt;/p&gt;
&lt;p&gt;but&amp;nbsp;PM_EVT_PEER_DATA_UPDATE_SUCCEEDED is expected&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269511?ContentTypeID=1</link><pubDate>Tue, 15 Sep 2020 06:06:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:51dd196b-9423-49db-98f4-4533c231bd31</guid><dc:creator>Surya</dc:creator><description>&lt;p&gt;Hi Vidar Berg, Thanks for your reply. I tried to stop and release the LF clock source using&lt;/p&gt;
&lt;p&gt;ble_conn_params_stop() and&lt;/p&gt;
&lt;p&gt;nrf_sdh_disable_request().&lt;/p&gt;
&lt;p&gt;I also tried releasing LF clock Source&amp;nbsp;nrf_drv_clock_lfclk_release(); but no use.&lt;/p&gt;
&lt;p&gt;as you mentioned switching clock source to RC oscillator I am getting an error&amp;nbsp;NRF_ERROR_SOFTDEVICE_NOT_ENABLED.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Are there any configuration changes I should do for using the RC oscillator?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of 320uA after ble advertising stopped.</title><link>https://devzone.nordicsemi.com/thread/269467?ContentTypeID=1</link><pubDate>Mon, 14 Sep 2020 17:13:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:01c2fca0-29ad-4071-a0aa-b81a4da08509</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;The Softdevice keeps the LF clock source active as long as it is enabled even if it is not in an active BLE role. But have you considered selecting the internal RC oscillator as the LF clock source instead? As noted in the Softdevice release notes, the synthesized option is not tested and thus not recommended.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Vidar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>