Adafruit Feather nrf52840: High power consumption (~1mA) in deep sleep

Hi,

I am using zephyr v4.3.0, and have compiled the "https://github.com/zephyrproject-rtos/zephyr/tree/main/samples/boards/nordic/system_off" sample to

run it on a Adafruit Feather nrf52840 (which is from year 2021 AFAIR)

The board is powered through the 3.3v pin (so the LDO is not used), and I use the Nordic PPK2 to measure the current.

I have disabled the uart console.

I have just modified the sample to wait 3 secs before entering sleep.

When entering sleep, the consumption never goes below 1 mA.

What I have attempted is to force the NeoPixel POWER and DATA GPIOs (with a hog in device tree)  with no much better success.

This consumption is far from the expected tens of micro amperes, what can be possibly wrong ?

Thanks !

Parents
  • Hi there,

    So not sure which version, they refreshed it so , YMMV

    The high current consumption is likely due to other components on the Feather board that are not powered down, most notably the onboard USB-to-Serial converter and potentially other peripheral components like the QSPI flash and power-on LED.

    We USE the XIAO nRF52840 and can get down to 2ua, sleep easy. Check out the Seeed Studio Forum for Code and Video's, using the PPK2 also. We have the POWER Ninja @msfujino in the user support group who is absolutely the man on shaving the power.

    Zephyr Configuration: Ensure all non-essential peripherals in your Zephyr configuration are disabled, not just the UART console. This includes things like I2C, SPI, ADC, etc., if not used.

    • Solution: In your prj.conf file, add configuration options to disable unused peripherals (e.g., CONFIG_I2C=n, CONFIG_SPI=n). You should also enable power management features:

    CONFIG_PM_DEVICE=y
    CONFIG_SYS_POWER_MANAGEMENT=y
    CONFIG_PM_STATE_SOFT_OFF=y

    I know the System_off sample includes these , but double check you prj.

    We usually shut down the Dc/DC regulator and the External Flash(sleep) and that makes a huge dif , AFAIR - 4ma.

    https://forum.seeedstudio.com/t/sleep-current-of-xiao-nrf52840-deep-sleep-vs-light-sleep/271841?u=pj_glasso

    HTH

    GL Grin PJ V

Reply
  • Hi there,

    So not sure which version, they refreshed it so , YMMV

    The high current consumption is likely due to other components on the Feather board that are not powered down, most notably the onboard USB-to-Serial converter and potentially other peripheral components like the QSPI flash and power-on LED.

    We USE the XIAO nRF52840 and can get down to 2ua, sleep easy. Check out the Seeed Studio Forum for Code and Video's, using the PPK2 also. We have the POWER Ninja @msfujino in the user support group who is absolutely the man on shaving the power.

    Zephyr Configuration: Ensure all non-essential peripherals in your Zephyr configuration are disabled, not just the UART console. This includes things like I2C, SPI, ADC, etc., if not used.

    • Solution: In your prj.conf file, add configuration options to disable unused peripherals (e.g., CONFIG_I2C=n, CONFIG_SPI=n). You should also enable power management features:

    CONFIG_PM_DEVICE=y
    CONFIG_SYS_POWER_MANAGEMENT=y
    CONFIG_PM_STATE_SOFT_OFF=y

    I know the System_off sample includes these , but double check you prj.

    We usually shut down the Dc/DC regulator and the External Flash(sleep) and that makes a huge dif , AFAIR - 4ma.

    https://forum.seeedstudio.com/t/sleep-current-of-xiao-nrf52840-deep-sleep-vs-light-sleep/271841?u=pj_glasso

    HTH

    GL Grin PJ V

Children
No Data
Related