This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

High power consumption on SYSTEM OFF -nrf52820

Hi,

GOAL : I try to measure the current consumption in system off only.

PROBLEM : I measure a current of 8uA in system off while in the datasheet of the PAN1781 et nrf52820 it is sub uA with no ram retention.

HARDWARE: I am using a PAN1781 (nrf52820) with the dev board from panasonic ENW89857AXKF.

SOFTWARE: I started using the bluetooth/peripheral_lbs exemple that i modified with the following code. 

void main(void)
{
  NRF_POWER->SYSTEMOFF = 1;
  for(;;){}
}

I tried to desactivate the peripherals in zephyr:

# Drivers and peripherals
CONFIG_I2C=n
CONFIG_WATCHDOG=n
CONFIG_GPIO=n
CONFIG_PINMUX=n
CONFIG_SPI=n
CONFIG_SERIAL=n

How to reduce the consumption to sub uA ? 

Thanks for your help.

Parents
  • I have no experience with the board in question or the nRF52820 (I use a nRF52832)
    But since you don't seem to have used any peripherals I assume a low risk of it being one of the anomalies described in one of the Product Anomaly Notifications.
    I also assume this is after a cold boot with no debugger active and all peripherals reset to there normal power on state

    I would:
    1) Look at the schematic of you dev board, are you only measuring the nrf current draw?
    (especially looking for voltage regulators and also considering parasitic draw of other components)

    2) Read though the PAN document for the nRF52820 (once again just to make sure

    3) As a last measure I might consider creating a firmware that doesn't use the SDK and SoftDevice that immediately powers the chip down
    (To get a reference measurement of how low it is possible to get the board to go)

Reply
  • I have no experience with the board in question or the nRF52820 (I use a nRF52832)
    But since you don't seem to have used any peripherals I assume a low risk of it being one of the anomalies described in one of the Product Anomaly Notifications.
    I also assume this is after a cold boot with no debugger active and all peripherals reset to there normal power on state

    I would:
    1) Look at the schematic of you dev board, are you only measuring the nrf current draw?
    (especially looking for voltage regulators and also considering parasitic draw of other components)

    2) Read though the PAN document for the nRF52820 (once again just to make sure

    3) As a last measure I might consider creating a firmware that doesn't use the SDK and SoftDevice that immediately powers the chip down
    (To get a reference measurement of how low it is possible to get the board to go)

Children
Related