STM32F103xB HAL User Manual
Defines
EVENTOUT Port
EVENTOUT Cortex Configuration

Defines

#define AFIO_EVENTOUT_PORT_A   AFIO_EVCR_PORT_PA
#define AFIO_EVENTOUT_PORT_B   AFIO_EVCR_PORT_PB
#define AFIO_EVENTOUT_PORT_C   AFIO_EVCR_PORT_PC
#define AFIO_EVENTOUT_PORT_D   AFIO_EVCR_PORT_PD
#define AFIO_EVENTOUT_PORT_E   AFIO_EVCR_PORT_PE
#define IS_AFIO_EVENTOUT_PORT(__PORT__)

Define Documentation

#define AFIO_EVENTOUT_PORT_A   AFIO_EVCR_PORT_PA

EVENTOUT on port A

Definition at line 95 of file stm32f1xx_hal_gpio_ex.h.

#define AFIO_EVENTOUT_PORT_B   AFIO_EVCR_PORT_PB

EVENTOUT on port B

Definition at line 96 of file stm32f1xx_hal_gpio_ex.h.

#define AFIO_EVENTOUT_PORT_C   AFIO_EVCR_PORT_PC

EVENTOUT on port C

Definition at line 97 of file stm32f1xx_hal_gpio_ex.h.

#define AFIO_EVENTOUT_PORT_D   AFIO_EVCR_PORT_PD

EVENTOUT on port D

Definition at line 98 of file stm32f1xx_hal_gpio_ex.h.

#define AFIO_EVENTOUT_PORT_E   AFIO_EVCR_PORT_PE

EVENTOUT on port E

Definition at line 99 of file stm32f1xx_hal_gpio_ex.h.

#define IS_AFIO_EVENTOUT_PORT (   __PORT__)
Value:
(((__PORT__) == AFIO_EVENTOUT_PORT_A) || \
                                         ((__PORT__) == AFIO_EVENTOUT_PORT_B) || \
                                         ((__PORT__) == AFIO_EVENTOUT_PORT_C) || \
                                         ((__PORT__) == AFIO_EVENTOUT_PORT_D) || \
                                         ((__PORT__) == AFIO_EVENTOUT_PORT_E))

Definition at line 101 of file stm32f1xx_hal_gpio_ex.h.

Referenced by HAL_GPIOEx_ConfigEventout().