Lines Matching refs:GPIOPin
2650 __STATIC_INLINE void LL_PWR_EnableGPIOPullUp(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_EnableGPIOPullUp() argument
2652 SET_BIT(*((uint32_t *)GPIOPort), GPIOPin); in LL_PWR_EnableGPIOPullUp()
2689 __STATIC_INLINE void LL_PWR_DisableGPIOPullUp(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_DisableGPIOPullUp() argument
2691 CLEAR_BIT(*((uint32_t *)GPIOPort), GPIOPin); in LL_PWR_DisableGPIOPullUp()
2728 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIOPullUp(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_IsEnabledGPIOPullUp() argument
2730 return ((READ_BIT(*((uint32_t *)(GPIOPort)), GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIOPullUp()
2767 __STATIC_INLINE void LL_PWR_EnableGPIOPullDown(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_EnableGPIOPullDown() argument
2769 SET_BIT(*((__IO uint32_t *)(GPIOPort + 4U)), GPIOPin); in LL_PWR_EnableGPIOPullDown()
2806 __STATIC_INLINE void LL_PWR_DisableGPIOPullDown(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_DisableGPIOPullDown() argument
2808 CLEAR_BIT(*((__IO uint32_t *)(GPIOPort + 4U)), GPIOPin); in LL_PWR_DisableGPIOPullDown()
2845 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIOPullDown(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_IsEnabledGPIOPullDown() argument
2847 return ((READ_BIT(*((__IO uint32_t *)(GPIOPort + 4U)), GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIOPullDown()