Home
last modified time | relevance | path

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

/hal_stm32-3.7.0/stm32cube/stm32wbaxx/drivers/include/
Dstm32wbaxx_ll_pwr.h1067 __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/
Dstm32u5xx_ll_pwr.h2650 __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 …]