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

Power Management

Hi,
 

  I am started working on nRF9160 Power Management.
  I want to power down all devices(sleep mode) expect motion sensor, Wake if motion is detected.
  I went through System power On and system power off modes, many are suggesting to use System power On mode.
  Not quite sure where to start to look for resources on this. Any documentation you can point me to?

  Thank You.

Parents
  • Hi,

     

      I want to power down all devices(sleep mode) expect motion sensor, Wake if motion is detected.
      I went through System power On and system power off modes, many are suggesting to use System power On mode.

     To enter idle, you can force this using k_cpu_idle(), which is the systemon idle mode.

    Other modes, like k_sleep(ms) also do the same, and wakes you up after the "ms" has expired.

     

    Kind regards,

    Håkon

Reply
  • Hi,

     

      I want to power down all devices(sleep mode) expect motion sensor, Wake if motion is detected.
      I went through System power On and system power off modes, many are suggesting to use System power On mode.

     To enter idle, you can force this using k_cpu_idle(), which is the systemon idle mode.

    Other modes, like k_sleep(ms) also do the same, and wakes you up after the "ms" has expired.

     

    Kind regards,

    Håkon

Children
Related