HAL
MODE_INPUT is only used within HAL.
 
Symbols
loading...
Files
loading...

MODE_INPUT macro

Syntax

#define MODE_INPUT (0x0UL << GPIO_MODE_Pos)

References

LocationText
stm32f4xx_hal_gpio.h:256
#define MODE_INPUT (0x0UL << GPIO_MODE_Pos)
stm32f4xx_hal_gpio.h:117
#define GPIO_MODE_INPUT MODE_INPUT /*!< Input Floating Mode */
stm32f4xx_hal_gpio.h:125
#define GPIO_MODE_IT_RISING (MODE_INPUT | EXTI_IT | TRIGGER_RISING) /*!< External Interrupt Mode with Rising edge trigger detection */
stm32f4xx_hal_gpio.h:126
#define GPIO_MODE_IT_FALLING (MODE_INPUT | EXTI_IT | TRIGGER_FALLING) /*!< External Interrupt Mode with Falling edge trigger detection */
stm32f4xx_hal_gpio.h:127
#define GPIO_MODE_IT_RISING_FALLING (MODE_INPUT | EXTI_IT | TRIGGER_RISING | TRIGGER_FALLING) /*!< External Interrupt Mode with Rising/Falling edge trigger detection */
stm32f4xx_hal_gpio.h:129
#define GPIO_MODE_EVT_RISING (MODE_INPUT | EXTI_EVT | TRIGGER_RISING) /*!< External Event Mode with Rising edge trigger detection */
stm32f4xx_hal_gpio.h:130
#define GPIO_MODE_EVT_FALLING (MODE_INPUT | EXTI_EVT | TRIGGER_FALLING) /*!< External Event Mode with Falling edge trigger detection */
stm32f4xx_hal_gpio.h:131
#define GPIO_MODE_EVT_RISING_FALLING (MODE_INPUT | EXTI_EVT | TRIGGER_RISING | TRIGGER_FALLING) /*!< External Event Mode with Rising/Falling edge trigger detection */