Lines Matching refs:WakeUpPin
836 __STATIC_INLINE void LL_PWR_EnableWakeUpPin(uint32_t WakeUpPin) in LL_PWR_EnableWakeUpPin() argument
838 SET_BIT(PWR->CR3, WakeUpPin); in LL_PWR_EnableWakeUpPin()
856 __STATIC_INLINE void LL_PWR_DisableWakeUpPin(uint32_t WakeUpPin) in LL_PWR_DisableWakeUpPin() argument
858 CLEAR_BIT(PWR->CR3, WakeUpPin); in LL_PWR_DisableWakeUpPin()
876 __STATIC_INLINE uint32_t LL_PWR_IsEnabledWakeUpPin(uint32_t WakeUpPin) in LL_PWR_IsEnabledWakeUpPin() argument
879 temp = READ_BIT(PWR->CR3, WakeUpPin); in LL_PWR_IsEnabledWakeUpPin()
881 return ((temp == (WakeUpPin))?1U:0U); in LL_PWR_IsEnabledWakeUpPin()
957 __STATIC_INLINE void LL_PWR_SetWakeUpPinPolarityLow(uint32_t WakeUpPin) in LL_PWR_SetWakeUpPinPolarityLow() argument
959 SET_BIT(PWR->CR4, WakeUpPin); in LL_PWR_SetWakeUpPinPolarityLow()
977 __STATIC_INLINE void LL_PWR_SetWakeUpPinPolarityHigh(uint32_t WakeUpPin) in LL_PWR_SetWakeUpPinPolarityHigh() argument
979 CLEAR_BIT(PWR->CR4, WakeUpPin); in LL_PWR_SetWakeUpPinPolarityHigh()
997 __STATIC_INLINE uint32_t LL_PWR_IsWakeUpPinPolarityLow(uint32_t WakeUpPin) in LL_PWR_IsWakeUpPinPolarityLow() argument
1000 temp = READ_BIT(PWR->CR4, WakeUpPin); in LL_PWR_IsWakeUpPinPolarityLow()
1002 return ((temp == (WakeUpPin))?1U:0U); in LL_PWR_IsWakeUpPinPolarityLow()