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

enter into low power mode

Hi All,

i am using nrf52840 in nrf_Connect_sdk

is there any way where i can enter low power mode without sleep functions

Regards

Tushar

Parents Reply
  • There is a tutorial  for making the chip go to system_off sleep and wakeup configuration. Even though the tutorial is made for nRF53, the configuration is still valid for nRF52840 aswell.

    The most important configuration is for you to enable the power manager and the PM will automatically take control of the sleep states of your chip.

    CONFIG_PM=y
    CONFIG_PM_DEVICE=y

    If you want to manually control when and how long your chip should go to sleep, then look at the example in nrf\samples\nfc\system_off\src\main.c::system_off and you can get some idea on how to make this work.

Children
Related