123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- #ifndef __STM32F4xx_PWR_H
- #define __STM32F4xx_PWR_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "stm32f4xx.h"
-
-
-
- #define PWR_PVDLevel_0 PWR_CR_PLS_LEV0
- #define PWR_PVDLevel_1 PWR_CR_PLS_LEV1
- #define PWR_PVDLevel_2 PWR_CR_PLS_LEV2
- #define PWR_PVDLevel_3 PWR_CR_PLS_LEV3
- #define PWR_PVDLevel_4 PWR_CR_PLS_LEV4
- #define PWR_PVDLevel_5 PWR_CR_PLS_LEV5
- #define PWR_PVDLevel_6 PWR_CR_PLS_LEV6
- #define PWR_PVDLevel_7 PWR_CR_PLS_LEV7
- #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLevel_0) || ((LEVEL) == PWR_PVDLevel_1)|| \
- ((LEVEL) == PWR_PVDLevel_2) || ((LEVEL) == PWR_PVDLevel_3)|| \
- ((LEVEL) == PWR_PVDLevel_4) || ((LEVEL) == PWR_PVDLevel_5)|| \
- ((LEVEL) == PWR_PVDLevel_6) || ((LEVEL) == PWR_PVDLevel_7))
-
- #define PWR_MainRegulator_ON ((uint32_t)0x00000000)
- #define PWR_LowPowerRegulator_ON PWR_CR_LPDS
- #define PWR_Regulator_ON PWR_MainRegulator_ON
- #define PWR_Regulator_LowPower PWR_LowPowerRegulator_ON
- #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_MainRegulator_ON) || \
- ((REGULATOR) == PWR_LowPowerRegulator_ON))
- #define PWR_MainRegulator_UnderDrive_ON PWR_CR_MRUDS
- #define PWR_LowPowerRegulator_UnderDrive_ON ((uint32_t)(PWR_CR_LPDS | PWR_CR_LPUDS))
- #define IS_PWR_REGULATOR_UNDERDRIVE(REGULATOR) (((REGULATOR) == PWR_MainRegulator_UnderDrive_ON) || \
- ((REGULATOR) == PWR_LowPowerRegulator_UnderDrive_ON))
- #if defined(STM32F410xx) || defined(STM32F412xG) || defined(STM32F413_423xx) || defined(STM32F446xx)
- #define PWR_WakeUp_Pin1 ((uint32_t)0x00)
- #define PWR_WakeUp_Pin2 ((uint32_t)0x01)
- #if defined(STM32F410xx) || defined(STM32F412xG) || defined(STM32F413_423xx)
- #define PWR_WakeUp_Pin3 ((uint32_t)0x02)
- #endif
- #if defined(STM32F446xx)
- #define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WakeUp_Pin1) || \
- ((PIN) == PWR_WakeUp_Pin2))
- #else
- #define IS_PWR_WAKEUP_PIN(PIN) (((PIN) == PWR_WakeUp_Pin1) || ((PIN) == PWR_WakeUp_Pin2) || \
- ((PIN) == PWR_WakeUp_Pin3))
- #endif
-
- #endif
- #define PWR_STOPEntry_WFI ((uint8_t)0x01)
- #define PWR_STOPEntry_WFE ((uint8_t)0x02)
- #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE))
- #define PWR_Regulator_Voltage_Scale1 ((uint32_t)0x0000C000)
- #define PWR_Regulator_Voltage_Scale2 ((uint32_t)0x00008000)
- #define PWR_Regulator_Voltage_Scale3 ((uint32_t)0x00004000)
- #define IS_PWR_REGULATOR_VOLTAGE(VOLTAGE) (((VOLTAGE) == PWR_Regulator_Voltage_Scale1) || \
- ((VOLTAGE) == PWR_Regulator_Voltage_Scale2) || \
- ((VOLTAGE) == PWR_Regulator_Voltage_Scale3))
- #define PWR_FLAG_WU PWR_CSR_WUF
- #define PWR_FLAG_SB PWR_CSR_SBF
- #define PWR_FLAG_PVDO PWR_CSR_PVDO
- #define PWR_FLAG_BRR PWR_CSR_BRR
- #define PWR_FLAG_VOSRDY PWR_CSR_VOSRDY
- #define PWR_FLAG_ODRDY PWR_CSR_ODRDY
- #define PWR_FLAG_ODSWRDY PWR_CSR_ODSWRDY
- #define PWR_FLAG_UDRDY PWR_CSR_UDSWRDY
- #define PWR_FLAG_REGRDY PWR_FLAG_VOSRDY
- #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \
- ((FLAG) == PWR_FLAG_PVDO) || ((FLAG) == PWR_FLAG_BRR) || \
- ((FLAG) == PWR_FLAG_VOSRDY) || ((FLAG) == PWR_FLAG_ODRDY) || \
- ((FLAG) == PWR_FLAG_ODSWRDY) || ((FLAG) == PWR_FLAG_UDRDY))
- #define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \
- ((FLAG) == PWR_FLAG_UDRDY))
-
-
- void PWR_DeInit(void);
-
- void PWR_BackupAccessCmd(FunctionalState NewState);
-
- void PWR_PVDLevelConfig(uint32_t PWR_PVDLevel);
- void PWR_PVDCmd(FunctionalState NewState);
- #if defined(STM32F40_41xxx) || defined(STM32F427_437xx) || defined(STM32F429_439xx) || defined(STM32F401xx) || defined(STM32F411xE)
- void PWR_WakeUpPinCmd(FunctionalState NewState);
- #endif
- #if defined(STM32F410xx) || defined(STM32F412xG) || defined(STM32F413_423xx) ||defined(STM32F446xx)
- void PWR_WakeUpPinCmd(uint32_t PWR_WakeUpPinx, FunctionalState NewState);
- #endif
-
- void PWR_BackupRegulatorCmd(FunctionalState NewState);
- void PWR_MainRegulatorModeConfig(uint32_t PWR_Regulator_Voltage);
- void PWR_OverDriveCmd(FunctionalState NewState);
- void PWR_OverDriveSWCmd(FunctionalState NewState);
- void PWR_UnderDriveCmd(FunctionalState NewState);
- #if defined(STM32F427_437xx) || defined(STM32F429_439xx) || defined(STM32F446xx)
- void PWR_MainRegulatorUnderDriveCmd(FunctionalState NewState);
- void PWR_LowRegulatorUnderDriveCmd(FunctionalState NewState);
- #endif
- #if defined(STM32F401xx) || defined(STM32F410xx) || defined(STM32F411xE) || defined(STM32F412xG) || defined(STM32F413_423xx)
- void PWR_MainRegulatorLowVoltageCmd(FunctionalState NewState);
- void PWR_LowRegulatorLowVoltageCmd(FunctionalState NewState);
- #endif
-
- void PWR_FlashPowerDownCmd(FunctionalState NewState);
-
- void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry);
- void PWR_EnterUnderDriveSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry);
- void PWR_EnterSTANDBYMode(void);
-
- FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG);
- void PWR_ClearFlag(uint32_t PWR_FLAG);
- #ifdef __cplusplus
- }
- #endif
- #endif
|