STM32F4xx HAL Documentation
Hardware Abstraction Layer for STM32F4 familiy
Loading...
Searching...
No Matches
PWR Private macros to check input parameters
Collaboration diagram for PWR Private macros to check input parameters:

Macros

#define IS_PWR_PVD_LEVEL(LEVEL)
 
#define IS_PWR_PVD_MODE(MODE)
 
#define IS_PWR_REGULATOR(REGULATOR)
 
#define IS_PWR_SLEEP_ENTRY(ENTRY)
 
#define IS_PWR_STOP_ENTRY(ENTRY)
 

Detailed Description

Macro Definition Documentation

◆ IS_PWR_PVD_LEVEL

#define IS_PWR_PVD_LEVEL ( LEVEL)

#include <stm32f4xx_hal_pwr.h>

Value:
(((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_PVDLEVEL_4
#define PWR_PVDLEVEL_1
#define PWR_PVDLEVEL_7
#define PWR_PVDLEVEL_5
#define PWR_PVDLEVEL_6
#define PWR_PVDLEVEL_3
#define PWR_PVDLEVEL_2
#define PWR_PVDLEVEL_0

Definition at line 396 of file stm32f4xx_hal_pwr.h.

Referenced by HAL_PWR_ConfigPVD().

◆ IS_PWR_PVD_MODE

#define IS_PWR_PVD_MODE ( MODE)

#include <stm32f4xx_hal_pwr.h>

Value:
(((MODE) == PWR_PVD_MODE_IT_RISING)|| ((MODE) == PWR_PVD_MODE_IT_FALLING) || \
((MODE) == PWR_PVD_MODE_NORMAL))
#define PWR_PVD_MODE_IT_RISING
#define PWR_PVD_MODE_EVENT_RISING
#define PWR_PVD_MODE_NORMAL
#define PWR_PVD_MODE_EVENT_RISING_FALLING
#define PWR_PVD_MODE_EVENT_FALLING
#define PWR_PVD_MODE_IT_FALLING
#define PWR_PVD_MODE_IT_RISING_FALLING

Definition at line 400 of file stm32f4xx_hal_pwr.h.

Referenced by HAL_PWR_ConfigPVD().

◆ IS_PWR_REGULATOR

#define IS_PWR_REGULATOR ( REGULATOR)

#include <stm32f4xx_hal_pwr.h>

Value:
(((REGULATOR) == PWR_MAINREGULATOR_ON) || \
((REGULATOR) == PWR_LOWPOWERREGULATOR_ON))
#define PWR_MAINREGULATOR_ON
#define PWR_LOWPOWERREGULATOR_ON

Definition at line 404 of file stm32f4xx_hal_pwr.h.

Referenced by HAL_PWR_EnterSLEEPMode(), and HAL_PWR_EnterSTOPMode().

◆ IS_PWR_SLEEP_ENTRY

#define IS_PWR_SLEEP_ENTRY ( ENTRY)

#include <stm32f4xx_hal_pwr.h>

Value:
(((ENTRY) == PWR_SLEEPENTRY_WFI) || \
((ENTRY) == PWR_SLEEPENTRY_WFE) || \
#define PWR_SLEEPENTRY_WFE
#define PWR_SLEEPENTRY_WFI
#define PWR_SLEEPENTRY_WFE_NO_EVT_CLEAR

Definition at line 407 of file stm32f4xx_hal_pwr.h.

Referenced by HAL_PWR_EnterSLEEPMode().

◆ IS_PWR_STOP_ENTRY

#define IS_PWR_STOP_ENTRY ( ENTRY)

#include <stm32f4xx_hal_pwr.h>

Value:
(((ENTRY) == PWR_STOPENTRY_WFI) || \
((ENTRY) == PWR_STOPENTRY_WFE) || \
#define PWR_STOPENTRY_WFE
#define PWR_STOPENTRY_WFI
#define PWR_STOPENTRY_WFE_NO_EVT_CLEAR

Definition at line 411 of file stm32f4xx_hal_pwr.h.

Referenced by HAL_PWR_EnterSTOPMode(), and HAL_PWREx_EnterUnderDriveSTOPMode().