nRF54L15 power consumption in sleep

Hi,

I've received the nRF54L15 DevKit and tested the power consumption during sleep
Testproject in GIT: https://github.com/marcel-cd/nrf54l15dk-powertest

The result was 960uA, the nRF52DK needed with the same settings 7uA. Are there any new settings or peripheral settings needed to get a proper sleep with the nRF54L?

Parents
  • I had this same issue. With Dev kits, their Devicetree is configured by default to enable most/all peripherals (ADC, GPIO, UART etc).

    This is done within the ncs/zephyr/boards configuration .dtsi file by assigning status = "okay" to those peripherals.

    What you want to do is create an overlay of the dev kit and disable those peripherals by assigning status = "disabled"

    This should reduce your current consumption in sleep state.

    Zephyr should automatically be putting the peripherals to sleep however needs additional sleep configuration in the devicetree/configuration files which the Dev kit files do not contain by default.

Reply
  • I had this same issue. With Dev kits, their Devicetree is configured by default to enable most/all peripherals (ADC, GPIO, UART etc).

    This is done within the ncs/zephyr/boards configuration .dtsi file by assigning status = "okay" to those peripherals.

    What you want to do is create an overlay of the dev kit and disable those peripherals by assigning status = "disabled"

    This should reduce your current consumption in sleep state.

    Zephyr should automatically be putting the peripherals to sleep however needs additional sleep configuration in the devicetree/configuration files which the Dev kit files do not contain by default.

Children
Related