Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/drivers/gpio/
Dfsl_gpio.h30 #define GPIO_FIT_REG(value) \ macro
33 #define GPIO_FIT_REG(value) ((uint32_t)(value)) macro
199 base->LOCK |= GPIO_FIT_REG(mask); in GPIO_SecurePrivilegeLock()
210 base->PCNS |= GPIO_FIT_REG(mask); in GPIO_EnablePinControlNonSecure()
221 base->PCNS &= GPIO_FIT_REG(~mask); in GPIO_DisablePinControlNonSecure()
232 base->PCNP |= GPIO_FIT_REG(mask); in GPIO_EnablePinControlNonPrivilege()
243 base->PCNP &= GPIO_FIT_REG(~mask); in GPIO_DisablePinControlNonPrivilege()
254 base->ICNS |= GPIO_FIT_REG(mask); in GPIO_EnableInterruptControlNonSecure()
265 base->ICNS &= GPIO_FIT_REG(~mask); in GPIO_DisableInterruptControlNonSecure()
276 base->ICNP |= GPIO_FIT_REG(mask); in GPIO_EnableInterruptControlNonPrivilege()
[all …]
Dfsl_gpio.c127 base->PDDR &= GPIO_FIT_REG(~(1UL << pin)); in GPIO_PinInit()
132 base->PDDR |= GPIO_FIT_REG((1UL << pin)); in GPIO_PinInit()
235 base->ISFR[0] = GPIO_FIT_REG(mask); in GPIO_GpioClearInterruptFlags()
248 base->ISFR[channel] = GPIO_FIT_REG(mask); in GPIO_GpioClearInterruptChannelFlags()
259 base->ICR[pin] |= GPIO_FIT_REG(GPIO_ICR_ISF(1U)); in GPIO_PinClearInterruptFlag()