nRF5340 Low Power Mode #75230
-
Hi there, I have project that require low power mode using nRF5340. I found a very comprehensive thread here related to low power for nRF5340. FYI, right now I use Zephyr v3.6.0. When I compile my source code, I start to realize Now, I want to implement custom idle thread hook using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @krisnaresi89, afaik Nordic does not currently implement the System Power Management on its platforms. There is only Device Power Management subsystem available for peripheral devices. Nordic SoCs have automatic power management when running idle (ie. |
Beta Was this translation helpful? Give feedback.
Hi @krisnaresi89,
afaik Nordic does not currently implement the System Power Management on its platforms. There is only Device Power Management subsystem available for peripheral devices.
Nordic SoCs have automatic power management when running idle (ie.
k_cpu_idle()
) and there is one extra state – System OFF – that can be entered by callingsys_poweroff()
.