<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://test-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>System on and keep RTC running in ultra-low power</title><link>https://test-devzone.nordicsemi.com/f/nordic-q-a/88774/system-on-and-keep-rtc-running-in-ultra-low-power</link><description>Hi Sir/Miss, 
 I&amp;#39;m using nrf52832, softdevice s132 and SDK 17.0.2. 
 In specification, I saw nrf52832 has a ultra low power mode. 
 It&amp;#39;s in system on with full retention RAM or without retention RAM. 
 I enable a RTC2 to tick and count the calendar, I</description><dc:language>en-US</dc:language><generator>Telligent Community 13 Non-Production</generator><lastBuildDate>Fri, 10 Jun 2022 12:04:56 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://test-devzone.nordicsemi.com/f/nordic-q-a/88774/system-on-and-keep-rtc-running-in-ultra-low-power" /><item><title>RE: System on and keep RTC running in ultra-low power</title><link>https://test-devzone.nordicsemi.com/thread/371878?ContentTypeID=1</link><pubDate>Fri, 10 Jun 2022 12:04:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c841ac28-c1d4-43db-8880-4b15abd07602</guid><dc:creator>user20009</dc:creator><description>&lt;p&gt;Hi &lt;span&gt;J&amp;oslash;rgen&lt;/span&gt;,&lt;/p&gt;
&lt;p&gt;I try to disable peripheral function.&amp;nbsp;Power saving is&amp;nbsp;under 1mA. But, it&amp;#39;s still too high. I try to separate some code to check sleep current. Therefore, I still have few questions.&lt;/p&gt;
&lt;p&gt;1. I comment BLE initial function code as below:&lt;/p&gt;
&lt;p&gt;Before this, I don&amp;#39;t run timer2_init() function (means comment &lt;span&gt;timer2_init()&lt;/span&gt;), sleep current can be near &lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;1uA&lt;/strong&gt;&lt;/span&gt;. When I&amp;nbsp;remove comment on timer2_init() (means run timer2_init()), and I disable and run un-initial timer2 before sleep. It&amp;#39;s measured&amp;nbsp;about &lt;strong&gt;&lt;span style="text-decoration:underline;"&gt;45uA&lt;/span&gt;&lt;/strong&gt;. How do I close it?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;//uart_init();
  log_init();

  timers_init();

  drv_gpio_configuration();
  
  pwm_init();
  
  saadc_sampling_event_init();
  saadc_init();
  timer2_init();      // Question 1
  
  /* Question 3
  sync_rtc(22, 6, 8, 20, 02, 55);
  lfclk_config();
  rtc_config();*/
  
  power_management_init();
  /* Question 4 comment for checking peripheral sleep current
  ble_stack_init();
  gap_params_init();
  gatt_init();
  services_init();
  advertising_init();
  conn_params_init();*/&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;2. Base on above code, I &lt;strong&gt;can&amp;#39;t wake up&lt;/strong&gt; SoC after entering system on mode. In previous wake up code, it works in system off. Instead of sd_power_system_off() to using WFE and WFI, it is ARM low-power standby mode.&amp;nbsp; It should be triggered by events for waking up. But, it looks like not working in my GPIO wake up pin.&lt;/p&gt;
&lt;p&gt;3. Enable comments at Question 3 block (RTC) and comment timer2_init() in above code.&amp;nbsp; The current measured &lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;11uA&lt;/strong&gt;&lt;/span&gt;. It is not near 1.9 uA.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;4.&amp;nbsp;Reserve RTC function (Question 3) and enable Question 4, and I don&amp;#39;t enable advertising in this part.&amp;nbsp;It has &lt;span style="text-decoration:underline;"&gt;&lt;strong&gt;820uA&lt;/strong&gt;&lt;/span&gt;. Which function should be disabled?&lt;/p&gt;
&lt;p&gt;Please assistance me to solve it.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: System on and keep RTC running in ultra-low power</title><link>https://test-devzone.nordicsemi.com/thread/371688?ContentTypeID=1</link><pubDate>Thu, 09 Jun 2022 13:22:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ef124127-e108-4577-acf3-516b0b0ee263</guid><dc:creator>user14926</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;It is possible to run the RTC in System ON mode, but not in System OFF. The expected current consumption is given by&amp;nbsp;&lt;span&gt;I&lt;/span&gt;&lt;sub&gt;ON_RAMOFF_RTC&lt;/sub&gt; in&amp;nbsp;&lt;a title="  Current consumption: Ultra-low power  " href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.nrf52832.ps.v1.1/pmu.html?cp=4_2_0_16_0_0_2#unique_205654252"&gt;Current consumption: Ultra-low power&lt;/a&gt;, but note that any additional running peripheral will increase the current consumption, as entering System ON mode will not automatically power down peripherals.&lt;/p&gt;
&lt;p&gt;If you are measuring 2.x mA current, some additional peripherals must be running. The usual suspects at this current-level is for instance UARTE in receive mode, or the SAADC peripheral.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Jørgen&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>