Home
last modified time | relevance | path

Searched refs:PeriphVoltage (Results 1 – 8 of 8) sorted by relevance

/hal_stm32-latest/stm32cube/stm32c0xx/drivers/include/
Dstm32c0xx_ll_pwr.h322 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
324 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
336 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
338 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
350 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
352 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32u0xx/drivers/include/
Dstm32u0xx_ll_pwr.h572 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
574 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
590 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
592 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
608 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
610 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32g0xx/drivers/include/
Dstm32g0xx_ll_pwr.h529 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
531 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
543 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
545 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
557 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
559 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/include/
Dstm32l4xx_ll_pwr.h596 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
598 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
616 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
618 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
636 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
638 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_ll_pwr.h574 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
576 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
592 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
594 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
610 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
612 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32g4xx/drivers/include/
Dstm32g4xx_ll_pwr.h604 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
606 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
624 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
626 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
644 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
647 temp = READ_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_IsEnabledPVM()
649 return ((temp == (PeriphVoltage))?1U:0U); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32wlxx/drivers/include/
Dstm32wlxx_ll_pwr.h518 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
520 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
530 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
532 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
542 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
544 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/include/
Dstm32wbxx_ll_pwr.h656 __STATIC_INLINE void LL_PWR_EnablePVM(uint32_t PeriphVoltage) in LL_PWR_EnablePVM() argument
658 SET_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_EnablePVM()
672 __STATIC_INLINE void LL_PWR_DisablePVM(uint32_t PeriphVoltage) in LL_PWR_DisablePVM() argument
674 CLEAR_BIT(PWR->CR2, PeriphVoltage); in LL_PWR_DisablePVM()
688 __STATIC_INLINE uint32_t LL_PWR_IsEnabledPVM(uint32_t PeriphVoltage) in LL_PWR_IsEnabledPVM() argument
690 return ((READ_BIT(PWR->CR2, PeriphVoltage) == (PeriphVoltage)) ? 1UL : 0UL); in LL_PWR_IsEnabledPVM()