Searched refs:GPIOPin (Results 1 – 3 of 3) sorted by relevance
/hal_stm32-3.7.0/stm32cube/stm32h7rsxx/drivers/include/ |
D | stm32h7rsxx_ll_pwr.h | 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() [all …]
|
/hal_stm32-3.7.0/stm32cube/stm32wbaxx/drivers/include/ |
D | stm32wbaxx_ll_pwr.h | 1067 __STATIC_INLINE void LL_PWR_EnableGPIOStandbyRetention(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_EnableGPIOStandbyRetention() argument 1069 SET_BIT(*((__IO uint32_t *)GPIOPort), GPIOPin); in LL_PWR_EnableGPIOStandbyRetention() 1099 __STATIC_INLINE void LL_PWR_DisableGPIOStandbyRetention(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_DisableGPIOStandbyRetention() argument 1101 CLEAR_BIT(*((__IO uint32_t *)GPIOPort), GPIOPin); in LL_PWR_DisableGPIOStandbyRetention() 1131 __STATIC_INLINE uint32_t LL_PWR_IsEnabledGPIOStandbyRetention(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_IsEnabledGPIOStandbyRetention() argument 1133 return ((READ_BIT(*((__IO uint32_t *)(GPIOPort)), GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledGPIOStandbyRetention() 1163 __STATIC_INLINE uint32_t LL_PWR_IsGPIOStandbyStateRetained(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_IsGPIOStandbyStateRetained() argument 1165 return ((READ_BIT(*((__IO uint32_t *)(GPIOPort)), GPIOPin) == (GPIOPin)) ? 1UL : 0UL); in LL_PWR_IsGPIOStandbyStateRetained() 1195 __STATIC_INLINE void LL_PWR_ClearGPIOStandbyRetentionStatus(uint32_t GPIOPort, uint32_t GPIOPin) in LL_PWR_ClearGPIOStandbyRetentionStatus() argument 1197 CLEAR_BIT(*((__IO uint32_t *)GPIOPort), GPIOPin); in LL_PWR_ClearGPIOStandbyRetentionStatus()
|
/hal_stm32-3.7.0/stm32cube/stm32u5xx/drivers/include/ |
D | stm32u5xx_ll_pwr.h | 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() [all …]
|