/hal_stm32-latest/stm32cube/stm32u5xx/drivers/include/ |
D | stm32u5xx_ll_pwr.h | 1702 MODIFY_REG(PWR->VOSR, PWR_VOSR_VOS, VoltageScaling); in LL_PWR_SetRegulVoltageScaling() 1716 return (uint32_t)(READ_BIT(PWR->VOSR, PWR_VOSR_VOS)); in LL_PWR_GetRegulVoltageScaling() 1726 SET_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN); in LL_PWR_EnableEPODBooster() 1736 CLEAR_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN); in LL_PWR_DisableEPODBooster() 1746 return ((READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN) == (PWR_VOSR_BOOSTEN)) ? 1UL : 0UL); in LL_PWR_IsEnabledEPODBooster() 1757 SET_BIT(PWR->VOSR, PWR_VOSR_USBPWREN); in LL_PWR_EnableUSBPowerSupply() 1767 CLEAR_BIT(PWR->VOSR, PWR_VOSR_USBPWREN); in LL_PWR_DisableUSBPowerSupply() 1777 return ((READ_BIT(PWR->VOSR, PWR_VOSR_USBPWREN) == (PWR_VOSR_USBPWREN)) ? 1UL : 0UL); in LL_PWR_IsEnabledUSBPowerSupply() 1789 SET_BIT(PWR->VOSR, PWR_VOSR_USBBOOSTEN); in LL_PWR_EnableUSBEPODBooster() 1799 CLEAR_BIT(PWR->VOSR, PWR_VOSR_USBBOOSTEN); in LL_PWR_DisableUSBEPODBooster() [all …]
|
D | stm32u5xx_hal_pwr.h | 371 …((__FLAG__) == PWR_FLAG_VOSRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_VOSRDY) == PWR_VOSR_VOSR… 372 …((__FLAG__) == PWR_FLAG_BOOSTRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTRDY) == PWR_VOSR_BOOS… 373 …((__FLAG__) == PWR_FLAG_USBBOOSTRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_USBBOOSTRDY) == PWR_VOSR_USBB… 397 …((__FLAG__) == PWR_FLAG_VOSRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_VOSRDY) == PWR_VOSR_VOSRDY… 398 …((__FLAG__) == PWR_FLAG_BOOSTRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTRDY) == PWR_VOSR_BOOSTR…
|
D | stm32u5xx_hal_pwr_ex.h | 734 MODIFY_REG(PWR->VOSR, PWR_VOSR_VOS, (__REGULATOR__)); \ 735 tmpreg = READ_BIT(PWR->VOSR, PWR_VOSR_VOS); \
|
/hal_stm32-latest/stm32cube/stm32u5xx/drivers/src/ |
D | stm32u5xx_hal_pwr_ex.c | 358 SET_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN); in HAL_PWREx_ControlVoltageScaling() 371 MODIFY_REG(PWR->VOSR, (PWR_VOSR_VOS | PWR_VOSR_BOOSTEN), (VoltageScaling | PWR_VOSR_BOOSTEN)); in HAL_PWREx_ControlVoltageScaling() 375 MODIFY_REG(PWR->VOSR, (PWR_VOSR_VOS | PWR_VOSR_BOOSTEN), VoltageScaling); in HAL_PWREx_ControlVoltageScaling() 380 while (HAL_IS_BIT_CLR(PWR->VOSR, PWR_VOSR_VOSRDY) && (timeout != 0U)) in HAL_PWREx_ControlVoltageScaling() 1398 SET_BIT(PWR->VOSR, (PWR_VOSR_USBPWREN | PWR_VOSR_USBBOOSTEN)); in HAL_PWREx_EnableUSBHSTranceiverSupply() 1414 CLEAR_BIT(PWR->VOSR, (PWR_VOSR_USBPWREN | PWR_VOSR_USBBOOSTEN)); in HAL_PWREx_DisableUSBHSTranceiverSupply() 1448 CLEAR_BIT(PWR->VOSR, PWR_VOSR_VDD11USBDIS); in HAL_PWREx_EnableVDD11USB() 1458 SET_BIT(PWR->VOSR, PWR_VOSR_VDD11USBDIS); in HAL_PWREx_DisableVDD11USB()
|
D | stm32u5xx_hal_rcc.c | 1185 if (READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN) == PWR_VOSR_BOOSTEN) in HAL_RCC_OscConfig() 1189 CLEAR_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN); in HAL_RCC_OscConfig() 1219 SET_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN); in HAL_RCC_OscConfig() 1441 if (READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTEN) != 0U) in HAL_RCC_ClockConfig() 1444 while (READ_BIT(PWR->VOSR, PWR_VOSR_BOOSTRDY) == 0U) in HAL_RCC_ClockConfig()
|
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/include/ |
D | stm32wbaxx_hal_pwr_ex.h | 207 MODIFY_REG(PWR->VOSR, PWR_VOSR_VOS, (__REGULATOR__)); \ 209 tmpreg = READ_BIT(PWR->VOSR, PWR_VOSR_VOS); \
|
D | stm32wbaxx_ll_pwr.h | 716 MODIFY_REG(PWR->VOSR, PWR_VOSR_VOS, VoltageScaling); in LL_PWR_SetRegulVoltageScaling() 728 return (uint32_t)(READ_BIT(PWR->VOSR, PWR_VOSR_VOS)); in LL_PWR_GetRegulVoltageScaling() 1370 return ((READ_BIT(PWR->VOSR, PWR_VOSR_VOSRDY) == (PWR_VOSR_VOSRDY)) ? 1UL : 0UL); in LL_PWR_IsActiveFlag_VOS()
|
D | stm32wbaxx_hal_pwr.h | 393 … ((__FLAG__) == PWR_FLAG_VOSRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_VOSRDY)== \ 426 … ((__FLAG__) == PWR_FLAG_VOSRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_VOSRDY)== \ 456 … ((__FLAG__) == PWR_FLAG_VOSRDY) ? (READ_BIT(PWR->VOSR, PWR_VOSR_VOSRDY)== \
|
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/src/ |
D | stm32wbaxx_hal_pwr_ex.c | 231 MODIFY_REG(PWR->VOSR, PWR_VOSR_VOS, VoltageScaling); in HAL_PWREx_ControlVoltageScaling() 236 while (HAL_IS_BIT_CLR(PWR->VOSR, PWR_VOSR_VOSRDY) && (timeout != 0U)) in HAL_PWREx_ControlVoltageScaling()
|
/hal_stm32-latest/stm32cube/stm32wbaxx/soc/ |
D | stm32wba50xx.h | 502 …__IO uint32_t VOSR; /*!< PWR voltage scaling register, Address off… member
|
D | stm32wba52xx.h | 593 …__IO uint32_t VOSR; /*!< PWR voltage scaling register, Address off… member
|
D | stm32wba54xx.h | 620 …__IO uint32_t VOSR; /*!< PWR voltage scaling register, Address off… member
|
D | stm32wba5mxx.h | 620 …__IO uint32_t VOSR; /*!< PWR voltage scaling register, Address off… member
|
D | stm32wba55xx.h | 620 …__IO uint32_t VOSR; /*!< PWR voltage scaling register, Address off… member
|
/hal_stm32-latest/stm32cube/stm32u5xx/soc/ |
D | stm32u545xx.h | 889 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u535xx.h | 823 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u575xx.h | 886 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u585xx.h | 953 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u595xx.h | 923 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u5a5xx.h | 990 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u5f7xx.h | 1084 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u599xx.h | 1104 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u5g7xx.h | 1151 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u5f9xx.h | 1188 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|
D | stm32u5a9xx.h | 1171 …__IO uint32_t VOSR; /*!< Power voltage scaling register, Address offset: 0x… member
|