This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Sleep mode and RTC

Hello, I am working on NRF52 DK,SDK12.1.0. When I am trying to make board into sleep mode with sleep_mode_enter(I have get sd_power_system_off),I found that RAM/UART is still working, I am not sure if the CPU enter sleep mode. My requirement is make CPU and all peripheral not working but RTC2 working continuously,so that I can save power and keep the time. Can I achieve this?

Parents
  • If your UART is still working then the system is not in SYSTEMOFF mode. RTC is not powered in systemoff (meaning your RTC is not running in system off), only resources available are given below.

    System OFF is the deepest power saving mode the system can enter. In this mode, the system’s core functionality is powered down and all ongoing tasks are terminated. The only mechanism that is functional and responsive in this mode is the reset and the wakeup mechanism.

    The system can be woken up from System OFF mode either from the DETECT signal (when active) generated by the GPIO peripheral, by the ANADETECT signal (when active) generated by the LPCOMP module, or from a reset. When the system wakes up from OFF mode, a system reset is performed.

  • Hi Aryan, Thanks for your fast feedback. I did not want to enter system OFF mode. I just want system sleep and keep RTC time. Thanks

Reply Children
No Data
Related