How to enter low power mode for NCS zephyr RTOS

Hi Support Team

We use ncs to develop nRF52840 application and want to know how many low power mode do ncs have and how to enter these low power mode.We want the nRF52840 can be wake by RTC and get the lowest current consumption during low power mode. Do you have any sample or documents for us to study and test? Many thanks.

  • Hello,

    nRF52840 supports two low-power modes: low-power mode and system-off mode.
    Low Power Mode: In this mode, the application enters CPU sleep mode when the kernel is in an idle state, which means it has nothing to schedule. Wake-up events are interrupts triggered by one of the SoC peripheral modules, such as RTC or SystemTick.
    System Off Mode: This is the deepest power-saving mode the system can enter. In this mode, all core functionalities are powered down, and most peripherals are non-functional or non-responsive.
    See the Bluetooth:Power Profiling sample, which explains a bit and also shows testing with the Power Profiler Kit.
    You can also read the device power management section on Zephyr. As an example reference, take a look at the system off demo sample from Zephyr. See the power optimisation section.
     
    Kind Regards,
    Abhijith
Related