Lines Matching refs:WakeUpPin
904 __STATIC_INLINE void LL_PWR_EnableWakeUpPin(uint32_t WakeUpPin) in LL_PWR_EnableWakeUpPin() argument
906 SET_BIT(PWR->CR3, WakeUpPin); in LL_PWR_EnableWakeUpPin()
924 __STATIC_INLINE void LL_PWR_DisableWakeUpPin(uint32_t WakeUpPin) in LL_PWR_DisableWakeUpPin() argument
926 CLEAR_BIT(PWR->CR3, WakeUpPin); in LL_PWR_DisableWakeUpPin()
944 __STATIC_INLINE uint32_t LL_PWR_IsEnabledWakeUpPin(uint32_t WakeUpPin) in LL_PWR_IsEnabledWakeUpPin() argument
946 return ((READ_BIT(PWR->CR3, WakeUpPin) == (WakeUpPin)) ? 1UL : 0UL); in LL_PWR_IsEnabledWakeUpPin()
1019 __STATIC_INLINE void LL_PWR_SetWakeUpPinPolarityLow(uint32_t WakeUpPin) in LL_PWR_SetWakeUpPinPolarityLow() argument
1021 SET_BIT(PWR->CR4, WakeUpPin); in LL_PWR_SetWakeUpPinPolarityLow()
1039 __STATIC_INLINE void LL_PWR_SetWakeUpPinPolarityHigh(uint32_t WakeUpPin) in LL_PWR_SetWakeUpPinPolarityHigh() argument
1041 CLEAR_BIT(PWR->CR4, WakeUpPin); in LL_PWR_SetWakeUpPinPolarityHigh()
1059 __STATIC_INLINE uint32_t LL_PWR_IsWakeUpPinPolarityLow(uint32_t WakeUpPin) in LL_PWR_IsWakeUpPinPolarityLow() argument
1061 return ((READ_BIT(PWR->CR4, WakeUpPin) == (WakeUpPin)) ? 1UL : 0UL); in LL_PWR_IsWakeUpPinPolarityLow()