Lines Matching full:mode

203       (+) The PVD is stopped in Standby mode.
208 (+) WakeUp pins are used to wakeup the system from Standby mode or Shutdown mode.
217 …(+) Low-power Run mode: core and peripherals are running, main regulator off, low power regulator …
219 …(+) Sleep mode: Cortex-M4 core stopped, peripherals kept running, main and low power regulators on.
220 …(+) Low-power Sleep mode: Cortex-M4 core stopped, peripherals kept running, main regulator off, lo…
222 (+) Stop 0 mode: all clocks are stopped except LSI and LSE, main and low power regulators on.
223 …(+) Stop 1 mode: all clocks are stopped except LSI and LSE, main regulator off, low power regulato…
224 …p 2 mode: all clocks are stopped except LSI and LSE, main regulator off, low power regulator on, r…
226 …(+) Standby mode with SRAM2a: all clocks are stopped except LSI and LSE, SRAM2a content preserved,…
228 …(+) Standby mode without SRAM2a: all clocks are stopped except LSI and LSE, main and low power reg…
230 (+) Shutdown mode: all clocks are stopped except LSE, main and low power regulators off.
233 *** Low-power run mode ***
236 (+) Entry: (from main run mode)
242 *** Sleep mode / Low-power sleep mode ***
246 The Sleep mode / Low-power Sleep mode is entered thru HAL_PWR_EnterSLEEPMode() API
247 …in specifying whether or not the regulator is forced to low-power mode and if exit is interrupt or…
248 (++) PWR_MAINREGULATOR_ON: Sleep mode (regulator in main mode).
249 (++) PWR_LOWPOWERREGULATOR_ON: Low-power sleep (regulator in low power mode).
251 (++) PWR_SLEEPENTRY_WFI: enter SLEEP mode with WFI instruction
252 (++) PWR_SLEEPENTRY_WFE: enter SLEEP mode with WFE instruction
259 (++) Any wake-up event such as an EXTI line configured in event mode.
261 [..] When exiting the Low-power sleep mode by issuing an interrupt or a wakeup event,
262 the MCU is in Low-power Run mode.
269 …++) HAL_PWREx_EnterSTOP0Mode() for mode 0, HAL_PWREx_EnterSTOP1Mode() for mode 1, HAL_PWREx_EnterS…
271 … Note: Low power Stop2 mode is not available on devices STM32WB15xx, STM32WB10xx, STM32WB1Mxx.
274 (++) PWR_MAINREGULATOR_ON: Regulator in main mode (STOP0 mode)
275 (++) PWR_LOWPOWERREGULATOR_ON: Regulator in low-power mode (STOP1 mode)
276 (+) Exit (interrupt or event-triggered, specified when entering STOP mode):
277 (++) PWR_STOPENTRY_WFI: enter Stop mode with WFI instruction
278 (++) PWR_STOPENTRY_WFE: enter Stop mode with WFE instruction
280 (++) Any EXTI Line (Internal or External) configured in Interrupt mode.
282 when programmed in wakeup mode.
284 (++) Any EXTI Line (Internal or External) configured in Event mode.
287 … When exiting Stop 0 and Stop 1 modes, the MCU is either in Run mode or in Low-power Run mode
289 When exiting Stop 2 mode, the MCU is in Run mode.
291 *** Standby mode ***
293 [..] The Standby mode offers two options:
294 …tion a) all clocks off except LSI and LSE, RRS bit set (keeps voltage regulator in low power mode).
302 (+++) The Standby mode is entered thru HAL_PWR_EnterSTANDBYMode() API.
310 …[..] After waking up from Standby mode, program execution restarts in the same way as after a Rese…
313 *** Shutdown mode ***
316 In Shutdown mode,
320 The Shutdown mode is entered thru HAL_PWREx_EnterSHUTDOWNMode() API.
324 …[..] After waking up from Shutdown mode, program execution restarts in the same way as after a Res…
327 *** Auto-wakeup (AWU) from low-power mode ***
330 The MCU can be woken up from low-power mode by an RTC Alarm event, an RTC
332 an external interrupt (Auto-wakeup mode).
337 (++) To wake up from the Stop mode with an RTC alarm event, it is necessary to
340 (++) To wake up from the Stop mode with an RTC Tamper or time stamp event, it
344 (++) To wake up from the Stop mode with an RTC WakeUp event, it is necessary to
358 * @note If "sConfigPVD->Mode" is set to PVD_MODE_IT,
370 assert_param(IS_PWR_PVD_MODE(sConfigPVD->Mode)); in HAL_PWR_ConfigPVD()
375 /* Clear any previous config. Keep it clear if no event or IT mode is selected */ in HAL_PWR_ConfigPVD()
385 /* Configure interrupt mode */ in HAL_PWR_ConfigPVD()
386 if ((sConfigPVD->Mode & PVD_MODE_IT) == PVD_MODE_IT) in HAL_PWR_ConfigPVD()
393 if ((sConfigPVD->Mode & PVD_RISING_EDGE) == PVD_RISING_EDGE) in HAL_PWR_ConfigPVD()
398 if ((sConfigPVD->Mode & PVD_FALLING_EDGE) == PVD_FALLING_EDGE) in HAL_PWR_ConfigPVD()
460 * @arg PWR_WAKEUP_PIN1: An event on PA0 PIN wakes-up the system from Standby mode.
461 * @arg PWR_WAKEUP_PIN2: An event on PC13 PIN wakes-up the system from Standby mode.
462 * @arg PWR_WAKEUP_PIN3: An event on PC12 PIN wakes-up the system from Standby mode.
463 * @arg PWR_WAKEUP_PIN4: An event on PA2 PIN wakes-up the system from Standby mode.
464 * @arg PWR_WAKEUP_PIN5: An event on PC5 PIN wakes-up the system from Standby mode.
475 * @brief Enter Sleep or Low-power Sleep mode.
476 * @note In Sleep/Low-power Sleep mode, all I/O pins keep the same state as in Run mode.
477 * @param Regulator Specifies the regulator state in Sleep/Low-power Sleep mode.
479 * @arg @ref PWR_MAINREGULATOR_ON Sleep mode (regulator in main mode)
480 * @arg @ref PWR_LOWPOWERREGULATOR_ON Low-power Sleep mode (regulator in low-power mode)
481 * @note Low-power Sleep mode is entered from Low-power Run mode. Therefore, if not yet
482 * in Low-power Run mode before calling HAL_PWR_EnterSLEEPMode() with Regulator set
484 * Flash in power-down mode in setting the SLEEP_PD bit in FLASH_ACR register.
488 * @note When exiting Low-power Sleep mode, the MCU is in Low-power Run mode. To move in
489 * Run mode, the user must resort to HAL_PWREx_DisableLowPowerRunMode() API.
490 * @param SLEEPEntry Specifies if Sleep mode is entered with WFI or WFE instruction.
492 * @arg @ref PWR_SLEEPENTRY_WFI enter Sleep or Low-power Sleep mode with WFI instruction
493 * @arg @ref PWR_SLEEPENTRY_WFE enter Sleep or Low-power Sleep mode with WFE instruction
507 /* If in low-power run mode at this point, exit it */ in HAL_PWR_EnterSLEEPMode()
515 /* Regulator now in main mode. */ in HAL_PWR_EnterSLEEPMode()
519 /* If in run mode, first move to low-power run mode. in HAL_PWR_EnterSLEEPMode()
530 /* Select SLEEP mode entry -------------------------------------------------*/ in HAL_PWR_EnterSLEEPMode()
547 * @brief Enter Stop mode
549 * on devices where only "Stop mode" is mentioned with main or low power regulator ON.
550 * @note In Stop mode, all I/O pins keep the same state as in Run mode.
558 …* The voltage regulator can be configured either in normal (Stop 0) or low-power mode (Stop…
559 * @note When exiting Stop 0 or Stop 1 mode by issuing an interrupt or a wakeup event,
562 * @note When the voltage regulator operates in low power mode (Stop 1), an additional
564 * By keeping the internal regulator ON during Stop mode (Stop 0), the consumption
566 …* @note Case of Stop0 mode with SMPS: Before entering Stop 0 mode with SMPS Step Down converter e…
568 * @note According to system power policy, system entering in Stop mode
569 * is depending on other CPU power mode.
570 * @param Regulator Specifies the regulator state in Stop mode.
572 * @arg @ref PWR_MAINREGULATOR_ON Stop 0 mode (main regulator ON)
573 * @arg @ref PWR_LOWPOWERREGULATOR_ON Stop 1 mode (low power regulator ON)
574 * @param STOPEntry Specifies Stop 0, Stop 1 or Stop 2 mode is entered with WFI or WFE instruction.
576 * @arg @ref PWR_STOPENTRY_WFI Enter Stop 0 or Stop 1 mode with WFI instruction.
577 * @arg @ref PWR_STOPENTRY_WFE Enter Stop 0 or Stop 1 mode with WFE instruction.
597 * @brief Enter Standby mode.
598 * @note In Standby mode, the PLL, the HSI, the MSI and the HSE oscillators are switched
600 * in which case the regulator is in low-power mode.
610 * These states are effective in Standby mode only if APC bit is set through
612 * @note According to system power policy, system entering in Standby mode
613 * is depending on other CPU power mode.
618 /* Set Stand-by mode */ in HAL_PWR_EnterSTANDBYMode()
633 mode according to system power policy */ in HAL_PWR_EnterSTANDBYMode()
640 * @brief Indicate Sleep-On-Exit when returning from Handler mode to Thread mode.
642 * re-enters SLEEP mode when an interruption handling is over.
654 * @brief Disable Sleep-On-Exit feature when returning from Handler mode to Thread mode.
656 * re-enters SLEEP mode when an interruption handling is over.