This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Current consumption in system off sleep

Hi.

I am using nrf52832, SDK15.0.0, and S132 SD.

I am using a custom board.
I checked the consumption current of 80uA in system off sleep state.
I want to lower it to 10uA but I do not know what to do.
The measurement methods and codes are as follows.
<measurement method>
<code>
int main(void){

  sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);
  
  nrf_gpio_cfg_output(HX711_SCK_PIN);
  nrf_gpio_pin_write(HX711_SCK_PIN,true);	//HX711 power down
  nrf_delay_us(100);	// 60us by datasheet
  
  NRF_POWER->SYSTEMOFF = 1;

}
What can I do to lower the current consumption?
Thank you.
Parents Reply Children
Related