你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。

【经验分享】STM32 低功耗相关函数和类型

[复制链接]
STMCU小助手 发布时间:2022-3-30 11:00
01. 概述
很多单片机都有低功耗模式,STM32F4 也不例外。在系统或电源复位以后,微控制器处于运行状态。运行状态下的 HCLK 为 CPU 提供时钟,内核执行程序代码。当 CPU 不需继续运行时,可以利用多个低功耗模式来节省功耗,例如等待某个外部事件时。用户需要根据最低电源消耗,最快速启动时间和可用的唤醒源等条件,选定一个最佳的低功耗模式。

在stm32f4xx_pwr.c 和stm32f4xx_pwr.h 文件中。

02. 相关类型
PWR_PVD_detection_level

  1. /** @defgroup PWR_PVD_detection_level
  2.   * @{
  3.   */
  4. #define PWR_PVDLevel_0                  PWR_CR_PLS_LEV0
  5. #define PWR_PVDLevel_1                  PWR_CR_PLS_LEV1
  6. #define PWR_PVDLevel_2                  PWR_CR_PLS_LEV2
  7. #define PWR_PVDLevel_3                  PWR_CR_PLS_LEV3
  8. #define PWR_PVDLevel_4                  PWR_CR_PLS_LEV4
  9. #define PWR_PVDLevel_5                  PWR_CR_PLS_LEV5
  10. #define PWR_PVDLevel_6                  PWR_CR_PLS_LEV6
  11. #define PWR_PVDLevel_7                  PWR_CR_PLS_LEV7

  12. #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLevel_0) || ((LEVEL) == PWR_PVDLevel_1)|| \
  13.                                  ((LEVEL) == PWR_PVDLevel_2) || ((LEVEL) == PWR_PVDLevel_3)|| \
  14.                                  ((LEVEL) == PWR_PVDLevel_4) || ((LEVEL) == PWR_PVDLevel_5)|| \
  15.                                  ((LEVEL) == PWR_PVDLevel_6) || ((LEVEL) == PWR_PVDLevel_7))
复制代码

PWR_Regulator_state_in_STOP_mode

  1. /** @defgroup PWR_Regulator_state_in_STOP_mode
  2.   * @{
  3.   */
  4. #define PWR_MainRegulator_ON                        ((uint32_t)0x00000000)
  5. #define PWR_LowPowerRegulator_ON                    PWR_CR_LPDS

  6. /* --- PWR_Legacy ---*/
  7. #define PWR_Regulator_ON                            PWR_MainRegulator_ON
  8. #define PWR_Regulator_LowPower                      PWR_LowPowerRegulator_ON

  9. #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_MainRegulator_ON) || \
  10.                                      ((REGULATOR) == PWR_LowPowerRegulator_ON))
复制代码

PWR_Regulator_state_in_UnderDrive_mode

  1. /** @defgroup PWR_Regulator_state_in_UnderDrive_mode
  2.   * @{
  3.   */
  4. #define PWR_MainRegulator_UnderDrive_ON               PWR_CR_MRUDS
  5. #define PWR_LowPowerRegulator_UnderDrive_ON           ((uint32_t)(PWR_CR_LPDS | PWR_CR_LPUDS))

  6. #define IS_PWR_REGULATOR_UNDERDRIVE(REGULATOR) (((REGULATOR) == PWR_MainRegulator_UnderDrive_ON) || \
  7.                                                 ((REGULATOR) == PWR_LowPowerRegulator_UnderDrive_ON))
复制代码

PWR_STOP_mode_entry

  1. /** @defgroup PWR_STOP_mode_entry
  2.   * @{
  3.   */
  4. #define PWR_STOPEntry_WFI               ((uint8_t)0x01)
  5. #define PWR_STOPEntry_WFE               ((uint8_t)0x02)
  6. #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE))
复制代码

PWR_Regulator_Voltage_Scale

  1. /** @defgroup PWR_Regulator_Voltage_Scale
  2.   * @{
  3.   */
  4. #define PWR_Regulator_Voltage_Scale1    ((uint32_t)0x0000C000)
  5. #define PWR_Regulator_Voltage_Scale2    ((uint32_t)0x00008000)
  6. #define PWR_Regulator_Voltage_Scale3    ((uint32_t)0x00004000)
  7. #define IS_PWR_REGULATOR_VOLTAGE(VOLTAGE) (((VOLTAGE) == PWR_Regulator_Voltage_Scale1) || \
  8.                                            ((VOLTAGE) == PWR_Regulator_Voltage_Scale2) || \
  9.                                            ((VOLTAGE) == PWR_Regulator_Voltage_Scale3))
复制代码

PWR_Flag


  1. /** @defgroup PWR_Flag
  2.   * @{
  3.   */
  4. #define PWR_FLAG_WU                     PWR_CSR_WUF
  5. #define PWR_FLAG_SB                     PWR_CSR_SBF
  6. #define PWR_FLAG_PVDO                   PWR_CSR_PVDO
  7. #define PWR_FLAG_BRR                    PWR_CSR_BRR
  8. #define PWR_FLAG_VOSRDY                 PWR_CSR_VOSRDY
  9. #define PWR_FLAG_ODRDY                  PWR_CSR_ODRDY
  10. #define PWR_FLAG_ODSWRDY                PWR_CSR_ODSWRDY
  11. #define PWR_FLAG_UDRDY                  PWR_CSR_UDSWRDY

  12. /* --- FLAG Legacy ---*/
  13. #define PWR_FLAG_REGRDY                  PWR_FLAG_VOSRDY               

  14. #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \
  15.                                ((FLAG) == PWR_FLAG_PVDO) || ((FLAG) == PWR_FLAG_BRR) || \
  16.                                ((FLAG) == PWR_FLAG_VOSRDY) || ((FLAG) == PWR_FLAG_ODRDY) || \
  17.                                ((FLAG) == PWR_FLAG_ODSWRDY) || ((FLAG) == PWR_FLAG_UDRDY))


  18. #define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \
  19.                                  ((FLAG) == PWR_FLAG_UDRDY))
复制代码

03. 相关函数

  1. /* Function used to set the PWR configuration to the default reset state ******/
  2. void PWR_DeInit(void);

  3. /* Backup Domain Access function **********************************************/
  4. void PWR_BackupAccessCmd(FunctionalState NewState);

  5. /* PVD configuration functions ************************************************/
  6. void PWR_PVDLevelConfig(uint32_t PWR_PVDLevel);
  7. void PWR_PVDCmd(FunctionalState NewState);

  8. void PWR_WakeUpPinCmd(FunctionalState NewState);

  9. /* Main and Backup Regulators configuration functions *************************/
  10. void PWR_BackupRegulatorCmd(FunctionalState NewState);
  11. void PWR_MainRegulatorModeConfig(uint32_t PWR_Regulator_Voltage);
  12. void PWR_OverDriveCmd(FunctionalState NewState);
  13. void PWR_OverDriveSWCmd(FunctionalState NewState);
  14. void PWR_UnderDriveCmd(FunctionalState NewState);

  15. /* FLASH Power Down configuration functions ***********************************/
  16. void PWR_FlashPowerDownCmd(FunctionalState NewState);

  17. /* Low Power modes configuration functions ************************************/
  18. void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry);
  19. void PWR_EnterUnderDriveSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry);
  20. void PWR_EnterSTANDBYMode(void);

  21. /* Flags management functions *************************************************/
  22. FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG);
  23. void PWR_ClearFlag(uint32_t PWR_FLAG);

复制代码

04. 结构体封装
  1. /**
  2.   * @brief Power Control
  3.   */

  4. typedef struct
  5. {
  6.   __IO uint32_t CR;   /*!< PWR power control register,        Address offset: 0x00 */
  7.   __IO uint32_t CSR;  /*!< PWR power control/status register, Address offset: 0x04 */
  8. } PWR_TypeDef;
复制代码

收藏 评论0 发布时间:2022-3-30 11:00

举报

0个回答

所属标签

相似分享

官网相关资源

关于
我们是谁
投资者关系
意法半导体可持续发展举措
创新与技术
意法半导体官网
联系我们
联系ST分支机构
寻找销售人员和分销渠道
社区
媒体中心
活动与培训
隐私策略
隐私策略
Cookies管理
行使您的权利
官方最新发布
STM32N6 AI生态系统
STM32MCU,MPU高性能GUI
ST ACEPACK电源模块
意法半导体生物传感器
STM32Cube扩展软件包
关注我们
st-img 微信公众号
st-img 手机版