| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /**
- ******************************************************************************
- * @file stm32l0xx_hal_pwr_ex.c
- * @author MCD Application Team
- * @brief Extended PWR HAL module driver.
- * This file provides firmware functions to manage the following
- * functionalities of the Power Controller (PWR) peripheral:
- * + Extended Initialization and de-initialization functions
- * + Extended Peripheral Control functions
- *
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2016 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- */
- /* Includes ------------------------------------------------------------------*/
- #include "stm32l0xx_hal.h"
- #ifdef HAL_PWR_MODULE_ENABLED
- /** @addtogroup STM32L0xx_HAL_Driver
- * @{
- */
- /** @addtogroup PWREx
- * @{
- */
- /** @addtogroup PWREx_Private
- * @{
- */
- /** @defgroup PWR_Extended_TimeOut_Value PWREx Flag Setting Time Out Value
- * @{
- */
- #define PWR_FLAG_SETTING_DELAY_US 50U
- /**
- * @}
- */
- /**
- * @}
- */
- /** @addtogroup PWREx_Exported_Functions
- * @brief Low Power modes configuration functions
- *
- @verbatim
- ===============================================================================
- ##### Peripheral extended features functions #####
- ===============================================================================
- @endverbatim
- * @{
- */
- /**
- * @brief Return Voltage Scaling Range.
- * @retval VOS bit field (PWR_REGULATOR_VOLTAGE_SCALE1, PWR_REGULATOR_VOLTAGE_SCALE2 or PWR_REGULATOR_VOLTAGE_SCALE3)
- */
- uint32_t HAL_PWREx_GetVoltageRange(void)
- {
- return (PWR->CR & PWR_CR_VOS);
- }
- /**
- * @brief Enables the Fast WakeUp from Ultra Low Power mode.
- * @note This bit works in conjunction with ULP bit.
- * Means, when ULP = 1 and FWU = 1 :VREFINT startup time is ignored when
- * exiting from low power mode.
- * @retval None
- */
- void HAL_PWREx_EnableFastWakeUp(void)
- {
- /* Enable the fast wake up */
- SET_BIT(PWR->CR, PWR_CR_FWU);
- }
- /**
- * @brief Disables the Fast WakeUp from Ultra Low Power mode.
- * @retval None
- */
- void HAL_PWREx_DisableFastWakeUp(void)
- {
- /* Disable the fast wake up */
- CLEAR_BIT(PWR->CR, PWR_CR_FWU);
- }
- /**
- * @brief Enables the Ultra Low Power mode
- * @retval None
- */
- void HAL_PWREx_EnableUltraLowPower(void)
- {
- /* Enable the Ultra Low Power mode */
- SET_BIT(PWR->CR, PWR_CR_ULP);
- }
- /**
- * @brief Disables the Ultra Low Power mode
- * @retval None
- */
- void HAL_PWREx_DisableUltraLowPower(void)
- {
- /* Disable the Ultra Low Power mode */
- CLEAR_BIT(PWR->CR, PWR_CR_ULP);
- }
- /**
- * @brief Enable the Low Power Run mode.
- * @note Low power run mode can only be entered when VCORE is in range 2.
- * In addition, the dynamic voltage scaling must not be used when Low
- * power run mode is selected. Only Stop and Sleep modes with regulator
- * configured in Low power mode is allowed when Low power run mode is
- * selected.
- * @note The frequency of the system clock must be decreased to not exceed the
- * frequency of RCC_MSIRANGE_1.
- * @note In Low power run mode, all I/O pins keep the same state as in Run mode.
- * @retval None
- */
- void HAL_PWREx_EnableLowPowerRunMode(void)
- {
- /* Enters the Low Power Run mode */
- SET_BIT(PWR->CR, PWR_CR_LPSDSR);
- SET_BIT(PWR->CR, PWR_CR_LPRUN);
- }
- /**
- * @brief Disable the Low Power Run mode.
- * @note Before HAL_PWREx_DisableLowPowerRunMode() completion, the function checks that
- * REGLPF has been properly reset (otherwise, HAL_PWREx_DisableLowPowerRunMode
- * returns HAL_TIMEOUT status). The system clock frequency can then be
- * increased above 2 MHz.
- * @retval HAL_StatusTypeDef
- */
- HAL_StatusTypeDef HAL_PWREx_DisableLowPowerRunMode(void)
- {
- uint32_t wait_loop_index = 0U;
-
- /* Exit the Low Power Run mode */
- CLEAR_BIT(PWR->CR, PWR_CR_LPRUN);
- CLEAR_BIT(PWR->CR, PWR_CR_LPSDSR);
-
- /* Wait until REGLPF is reset */
- wait_loop_index = (PWR_FLAG_SETTING_DELAY_US * (SystemCoreClock / 1000000U));
- while ((wait_loop_index != 0U) && (HAL_IS_BIT_SET(PWR->CSR, PWR_CSR_REGLPF)))
- {
- wait_loop_index--;
- }
- if (HAL_IS_BIT_SET(PWR->CSR, PWR_CSR_REGLPF))
- {
- return HAL_TIMEOUT;
- }
- return HAL_OK;
- }
- /**
- * @}
- */
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* HAL_PWR_MODULE_ENABLED */
|