Home
last modified time | relevance | path

Searched refs:s_GPIO_PORT_initFlag (Results 1 – 1 of 1) sorted by relevance

/hal_nxp-latest/mcux/mcux-sdk/components/gpio/
Dfsl_adapter_rt_gpio.c48 static uint32_t s_GPIO_PORT_initFlag = 0U; variable
50 #define SET_GPIO_PORT_INIT_FLAG(port) (s_GPIO_PORT_initFlag |= 1UL << (port))
51 #define GET_GPIO_PORT_INIT_FLAG(port) ((0U != (s_GPIO_PORT_initFlag & (1UL << (port)))) ? 1U : 0U)
52 #define CLEAR_GPIO_PORT_INIT_FLAG(port) (s_GPIO_PORT_initFlag &= ~(1UL << (port)))
182 s_GPIO_PORT_initFlag = 0U; in HAL_GpioPreInit()