STM32F2 Standard Peripheral bibliotheek  1.0
ST Microelectronics bibliotheek documentatie voor de STM32F2 Standard Peripheral Library
 All Data Structures Files Functions Variables Enumerations Enumerator Groups
stm32f2xx_pwr.h
Go to the documentation of this file.
1 
29 /* Define to prevent recursive inclusion -------------------------------------*/
30 #ifndef __STM32F2xx_PWR_H
31 #define __STM32F2xx_PWR_H
32 
33 #ifdef __cplusplus
34  extern "C" {
35 #endif
36 
37 /* Includes ------------------------------------------------------------------*/
38 #include "stm32f2xx.h"
39 
48 /* Exported types ------------------------------------------------------------*/
49 /* Exported constants --------------------------------------------------------*/
50 
59 #define PWR_PVDLevel_0 PWR_CR_PLS_LEV0
60 #define PWR_PVDLevel_1 PWR_CR_PLS_LEV1
61 #define PWR_PVDLevel_2 PWR_CR_PLS_LEV2
62 #define PWR_PVDLevel_3 PWR_CR_PLS_LEV3
63 #define PWR_PVDLevel_4 PWR_CR_PLS_LEV4
64 #define PWR_PVDLevel_5 PWR_CR_PLS_LEV5
65 #define PWR_PVDLevel_6 PWR_CR_PLS_LEV6
66 #define PWR_PVDLevel_7 PWR_CR_PLS_LEV7
67 
68 #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLevel_0) || ((LEVEL) == PWR_PVDLevel_1)|| \
69  ((LEVEL) == PWR_PVDLevel_2) || ((LEVEL) == PWR_PVDLevel_3)|| \
70  ((LEVEL) == PWR_PVDLevel_4) || ((LEVEL) == PWR_PVDLevel_5)|| \
71  ((LEVEL) == PWR_PVDLevel_6) || ((LEVEL) == PWR_PVDLevel_7))
72 
81 #define PWR_Regulator_ON ((uint32_t)0x00000000)
82 #define PWR_Regulator_LowPower PWR_CR_LPDS
83 #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_Regulator_ON) || \
84  ((REGULATOR) == PWR_Regulator_LowPower))
85 
93 #define PWR_STOPEntry_WFI ((uint8_t)0x01)
94 #define PWR_STOPEntry_WFE ((uint8_t)0x02)
95 #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE))
96 
105 #define PWR_FLAG_WU PWR_CSR_WUF
106 #define PWR_FLAG_SB PWR_CSR_SBF
107 #define PWR_FLAG_PVDO PWR_CSR_PVDO
108 #define PWR_FLAG_BRR PWR_CSR_BRR
109 
110 #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \
111  ((FLAG) == PWR_FLAG_PVDO) || ((FLAG) == PWR_FLAG_BRR))
112 
113 #define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB))
114 
122 /* Exported macro ------------------------------------------------------------*/
123 /* Exported functions --------------------------------------------------------*/
124 
125 /* Function used to set the PWR configuration to the default reset state ******/
126 void PWR_DeInit(void);
127 
128 /* Backup Domain Access function **********************************************/
129 void PWR_BackupAccessCmd(FunctionalState NewState);
130 
131 /* PVD configuration functions ************************************************/
132 void PWR_PVDLevelConfig(uint32_t PWR_PVDLevel);
133 void PWR_PVDCmd(FunctionalState NewState);
134 
135 /* WakeUp pins configuration functions ****************************************/
136 void PWR_WakeUpPinCmd(FunctionalState NewState);
137 
138 /* Backup Regulator configuration functions ***********************************/
139 void PWR_BackupRegulatorCmd(FunctionalState NewState);
140 
141 /* FLASH Power Down configuration functions ***********************************/
142 void PWR_FlashPowerDownCmd(FunctionalState NewState);
143 
144 /* Low Power modes configuration functions ************************************/
145 void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry);
146 void PWR_EnterSTANDBYMode(void);
147 
148 /* Flags management functions *************************************************/
149 FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG);
150 void PWR_ClearFlag(uint32_t PWR_FLAG);
151 
152 #ifdef __cplusplus
153 }
154 #endif
155 
156 #endif /* __STM32F2xx_PWR_H */
157 
166 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/