STOP sleep mode support docs for 3rd Gen devices?

Hi, where can I find the docs for STOP sleep mode on 3rd GEN devices?
I’m checking around here but cannot find references to STOP.
Thank you!

EDIT: I could not figure it out from the pull request nor the announcement

1 Like
  • stop mode sleep is pin, time, or pin + time
  • standby sleep is SLEEP_MODE_DEEP and SLEEP_MODE_SOFTPOWEROFF
1 Like

In the first link you posted, there are references to Standby and Stop modes. But you have to read through the paragraphs to find those key words. There is only one way to implement Standby and that is with System.Sleep(SLEEP_MODE_DEEP). The Stop mode is with a pin designation or by time System.sleep(D3,Rising,60).

image

…and @rickkas7 beat me to it. :wink:

1 Like

alright, thank you both. I thought I needed to look for something in the lines of

System.stop()

but that is not the case.
Thanks!

The terminology Stop vs. Standby comes from the way how STM32 called their “sleep” modes and over time this was adopted by the “geeks” here to save ourselves the hassle of saying something like “the sleep mode with pin wake - other than WKP” (=stop) :wink: opposed to deep sleep (=standby).

2 Likes