Lines Matching refs:GPIOPin

1390 __STATIC_INLINE void LL_PWR_EnableGPIONPullUp(uint32_t GPIOPin)  in LL_PWR_EnableGPIONPullUp()  argument
1392 SET_BIT(PWR->PUCRN, GPIOPin); in LL_PWR_EnableGPIONPullUp()
1404 __STATIC_INLINE void LL_PWR_DisableGPIONPullUp(uint32_t GPIOPin) in LL_PWR_DisableGPIONPullUp() argument
1406 CLEAR_BIT(PWR->PUCRN, GPIOPin); in LL_PWR_DisableGPIONPullUp()
1418 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIONPullUp(uint32_t GPIOPin) in LL_PWR_IsEnabledGPIONPullUp() argument
1420 return ((READ_BIT(PWR->PUCRN, GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIONPullUp()
1433 __STATIC_INLINE void LL_PWR_EnableGPIOOPullUp(uint32_t GPIOPin) in LL_PWR_EnableGPIOOPullUp() argument
1435 SET_BIT(PWR->PUCRO, GPIOPin); in LL_PWR_EnableGPIOOPullUp()
1447 __STATIC_INLINE void LL_PWR_DisableGPIOOPullUp(uint32_t GPIOPin) in LL_PWR_DisableGPIOOPullUp() argument
1449 CLEAR_BIT(PWR->PUCRO, GPIOPin); in LL_PWR_DisableGPIOOPullUp()
1461 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIOOPullUp(uint32_t GPIOPin) in LL_PWR_IsEnabledGPIOOPullUp() argument
1463 return ((READ_BIT(PWR->PUCRO, GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIOOPullUp()
1478 __STATIC_INLINE void LL_PWR_EnableGPIONPullDown(uint32_t GPIOPin) in LL_PWR_EnableGPIONPullDown() argument
1480 SET_BIT(PWR->PDCRN, GPIOPin); in LL_PWR_EnableGPIONPullDown()
1495 __STATIC_INLINE void LL_PWR_DisableGPIONPullDown(uint32_t GPIOPin) in LL_PWR_DisableGPIONPullDown() argument
1497 CLEAR_BIT(PWR->PDCRN, GPIOPin); in LL_PWR_DisableGPIONPullDown()
1512 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIONPullDown(uint32_t GPIOPin) in LL_PWR_IsEnabledGPIONPullDown() argument
1514 return ((READ_BIT(PWR->PDCRN, GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIONPullDown()
1527 __STATIC_INLINE void LL_PWR_EnableGPIOOPullDown(uint32_t GPIOPin) in LL_PWR_EnableGPIOOPullDown() argument
1529 SET_BIT(PWR->PDCRO, GPIOPin); in LL_PWR_EnableGPIOOPullDown()
1543 __STATIC_INLINE void LL_PWR_DisableGPIOOPullDown(uint32_t GPIOPin) in LL_PWR_DisableGPIOOPullDown() argument
1545 CLEAR_BIT(PWR->PDCRO, GPIOPin); in LL_PWR_DisableGPIOOPullDown()
1559 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIOOPullDown(uint32_t GPIOPin) in LL_PWR_IsEnabledGPIOOPullDown() argument
1561 return ((READ_BIT(PWR->PDCRO, GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIOOPullDown()
1574 __STATIC_INLINE void LL_PWR_EnableGPIOPPullDown(uint32_t GPIOPin) in LL_PWR_EnableGPIOPPullDown() argument
1576 SET_BIT(PWR->PDCRP, GPIOPin); in LL_PWR_EnableGPIOPPullDown()
1589 __STATIC_INLINE void LL_PWR_DisableGPIOPPullDown(uint32_t GPIOPin) in LL_PWR_DisableGPIOPPullDown() argument
1591 CLEAR_BIT(PWR->PDCRP, GPIOPin); in LL_PWR_DisableGPIOPPullDown()
1604 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIOPPullDown(uint32_t GPIOPin) in LL_PWR_IsEnabledGPIOPPullDown() argument
1606 return ((READ_BIT(PWR->PDCRP, GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIOPPullDown()