Home
last modified time | relevance | path

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

/hal_stm32-latest/stm32cube/stm32wbxx/drivers/include/
Dstm32wbxx_ll_pwr.h1507 …int32_t OutputVoltageLevelTrimmed; /* SMPS output voltage level after calibratio… in LL_PWR_SMPS_SetOutputVoltageLevel() local
1521OutputVoltageLevelTrimmed = ((int32_t)((uint32_t)(OutputVoltageLevel >> PWR_CR5_SMPSVOS_Pos)) + (i… in LL_PWR_SMPS_SetOutputVoltageLevel()
1524 if (OutputVoltageLevelTrimmed < 0) in LL_PWR_SMPS_SetOutputVoltageLevel()
1526 OutputVoltageLevelTrimmed = 0; in LL_PWR_SMPS_SetOutputVoltageLevel()
1530 if (OutputVoltageLevelTrimmed > (int32_t)PWR_CR5_SMPSVOS) in LL_PWR_SMPS_SetOutputVoltageLevel()
1532 OutputVoltageLevelTrimmed = (int32_t)PWR_CR5_SMPSVOS; in LL_PWR_SMPS_SetOutputVoltageLevel()
1537 MODIFY_REG(PWR->CR5, PWR_CR5_SMPSVOS, (uint32_t)OutputVoltageLevelTrimmed); in LL_PWR_SMPS_SetOutputVoltageLevel()
1568 …int32_t OutputVoltageLevelTrimmed; /* SMPS output voltage level after calibratio… in LL_PWR_SMPS_GetOutputVoltageLevel() local
1582OutputVoltageLevelTrimmed = ((int32_t)((uint32_t)READ_BIT(PWR->CR5, PWR_CR5_SMPSVOS)) - TrimmingSt… in LL_PWR_SMPS_GetOutputVoltageLevel()
1585 if (OutputVoltageLevelTrimmed < 0) in LL_PWR_SMPS_GetOutputVoltageLevel()
[all …]
/hal_stm32-latest/stm32cube/stm32wbxx/drivers/src/
Dstm32wbxx_hal_pwr_ex.c871 …int32_t OutputVoltageLevelTrimmed; /* SMPS output voltage level after calibration: tri… in HAL_PWREx_ConfigSMPS() local
885OutputVoltageLevelTrimmed = ((int32_t)((uint32_t)(sConfigSMPS->OutputVoltage >> PWR_CR5_SMPSVOS_Po… in HAL_PWREx_ConfigSMPS()
888 if (OutputVoltageLevelTrimmed < 0) in HAL_PWREx_ConfigSMPS()
890 OutputVoltageLevelTrimmed = 0; in HAL_PWREx_ConfigSMPS()
895 if (OutputVoltageLevelTrimmed > (int32_t)PWR_CR5_SMPSVOS) in HAL_PWREx_ConfigSMPS()
897 OutputVoltageLevelTrimmed = (int32_t)PWR_CR5_SMPSVOS; in HAL_PWREx_ConfigSMPS()
904 (sConfigSMPS->StartupCurrent | ((uint32_t) OutputVoltageLevelTrimmed))); in HAL_PWREx_ConfigSMPS()