Home
last modified time | relevance | path

Searched refs:Selection (Results 1 – 18 of 18) sorted by relevance

/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/src/
Dstm32h7rsxx_hal.c823 void HAL_SBS_EnableCompensationCell(uint32_t Selection) in HAL_SBS_EnableCompensationCell() argument
826 assert_param(IS_SBS_COMPENSATION_CELL(Selection)); in HAL_SBS_EnableCompensationCell()
828 SET_BIT(SBS->CCCSR, Selection); in HAL_SBS_EnableCompensationCell()
840 void HAL_SBS_DisableCompensationCell(uint32_t Selection) in HAL_SBS_DisableCompensationCell() argument
843 assert_param(IS_SBS_COMPENSATION_CELL(Selection)); in HAL_SBS_DisableCompensationCell()
845 MODIFY_REG(SBS->CCCSR, Selection, 0U); in HAL_SBS_DisableCompensationCell()
857 uint32_t HAL_SBS_GetCompensationCellReadyStatus(uint32_t Selection) in HAL_SBS_GetCompensationCellReadyStatus() argument
860 assert_param(IS_SBS_COMPENSATION_CELL_READY(Selection)); in HAL_SBS_GetCompensationCellReadyStatus()
862 return (((SBS->CCCSR & Selection) == 0U) ? 0UL : 1UL); in HAL_SBS_GetCompensationCellReadyStatus()
882 void HAL_SBS_ConfigCompensationCell(uint32_t Selection, uint32_t Code, uint32_t NmosValue, uint32_t… in HAL_SBS_ConfigCompensationCell() argument
[all …]
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/src/
Dstm32wbaxx_hal.c714 void HAL_SYSCFG_EnableCompensationCell(uint32_t Selection) in HAL_SYSCFG_EnableCompensationCell() argument
717 assert_param(IS_SYSCFG_COMPENSATION_CELL(Selection)); in HAL_SYSCFG_EnableCompensationCell()
719 SET_BIT(SYSCFG->CCCSR, Selection); in HAL_SYSCFG_EnableCompensationCell()
730 void HAL_SYSCFG_DisableCompensationCell(uint32_t Selection) in HAL_SYSCFG_DisableCompensationCell() argument
733 assert_param(IS_SYSCFG_COMPENSATION_CELL(Selection)); in HAL_SYSCFG_DisableCompensationCell()
735 MODIFY_REG(SYSCFG->CCCSR, Selection, 0U); in HAL_SYSCFG_DisableCompensationCell()
746 uint32_t HAL_SYSCFG_GetCompensationCellReadyStatus(uint32_t Selection) in HAL_SYSCFG_GetCompensationCellReadyStatus() argument
749 assert_param(IS_SYSCFG_COMPENSATION_CELL_READY(Selection)); in HAL_SYSCFG_GetCompensationCellReadyStatus()
751 return (((SYSCFG->CCCSR & Selection) == 0U) ? 0UL : 1UL); in HAL_SYSCFG_GetCompensationCellReadyStatus()
770 void HAL_SYSCFG_ConfigCompensationCell(uint32_t Selection, uint32_t Code, uint32_t NmosValue, uint3… in HAL_SYSCFG_ConfigCompensationCell() argument
[all …]
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/src/
Dstm32n6xx_hal.c1558 HAL_StatusTypeDef HAL_SYSCFG_ConfigVDDIOCompensationCell(uint32_t Selection, uint32_t Code, uint32_… in HAL_SYSCFG_ConfigVDDIOCompensationCell() argument
1564 assert_param(IS_SYSCFG_COMPENSATION_CELL(Selection)); in HAL_SYSCFG_ConfigVDDIOCompensationCell()
1580 switch (Selection) in HAL_SYSCFG_ConfigVDDIOCompensationCell()
1613 switch (Selection) in HAL_SYSCFG_ConfigVDDIOCompensationCell()
1663 HAL_StatusTypeDef HAL_SYSCFG_GetVDDIOCompensationCell(uint32_t Selection, const uint32_t *pCode, ui… in HAL_SYSCFG_GetVDDIOCompensationCell() argument
1670 assert_param(IS_SYSCFG_COMPENSATION_CELL(Selection)); in HAL_SYSCFG_GetVDDIOCompensationCell()
1679 switch (Selection) in HAL_SYSCFG_GetVDDIOCompensationCell()
1711 switch (Selection) in HAL_SYSCFG_GetVDDIOCompensationCell()
/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/include/
Dstm32h7rsxx_hal.h685 void HAL_SBS_EnableCompensationCell(uint32_t Selection);
686 void HAL_SBS_DisableCompensationCell(uint32_t Selection);
687 uint32_t HAL_SBS_GetCompensationCellReadyStatus(uint32_t Selection);
688 void HAL_SBS_ConfigCompensationCell(uint32_t Selection, uint32_t Code, uint32_t Nmo…
690 HAL_StatusTypeDef HAL_SBS_GetCompensationCell(uint32_t Selection, uint32_t *pCode, uint32_t *pNm…
693 void HAL_SBS_EnableIOSpeedOptimize(uint32_t Selection);
694 void HAL_SBS_DisableIOSpeedOptimize(uint32_t Selection);
/hal_stm32-latest/stm32cube/stm32wbaxx/drivers/include/
Dstm32wbaxx_hal.h659 void HAL_SYSCFG_EnableCompensationCell(uint32_t Selection);
660 void HAL_SYSCFG_DisableCompensationCell(uint32_t Selection);
661 uint32_t HAL_SYSCFG_GetCompensationCellReadyStatus(uint32_t Selection);
662 void HAL_SYSCFG_ConfigCompensationCell(uint32_t Selection, uint32_t Code, uint32_t NmosValue,
664 HAL_StatusTypeDef HAL_SYSCFG_GetCompensationCell(uint32_t Selection, uint32_t *pCode, uint32_t *pNm…
/hal_stm32-latest/stm32cube/stm32n6xx/drivers/include/
Dstm32n6xx_hal.h933 HAL_StatusTypeDef HAL_SYSCFG_ConfigVDDIOCompensationCell(uint32_t Selection, uint32_t Code,
936 HAL_StatusTypeDef HAL_SYSCFG_GetVDDIOCompensationCell(uint32_t Selection, const uint32_t *pCode, ui…
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/src/
Dstm32f4xx_hal_dfsdm.c437 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
440 channel0Instance->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
516 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
519 DFSDM1_Channel0->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_hal_dfsdm.h59 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/include/
Dstm32f7xx_hal_dfsdm.h60 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/include/
Dstm32mp1xx_hal_dfsdm.h59 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_hal_dfsdm.h59 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/src/
Dstm32mp1xx_hal_dfsdm.c397 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
400 DFSDM1_Channel0->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/src/
Dstm32f7xx_hal_dfsdm.c400 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
403 DFSDM1_Channel0->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/src/
Dstm32l4xx_hal_dfsdm.c409 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
412 DFSDM1_Channel0->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
/hal_stm32-latest/stm32cube/stm32l5xx/drivers/src/
Dstm32l5xx_hal_dfsdm.c397 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
400 DFSDM1_Channel0->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
/hal_stm32-latest/stm32cube/stm32l4xx/drivers/include/
Dstm32l4xx_hal_dfsdm.h65 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal_dfsdm.c428 assert_param(IS_DFSDM_CHANNEL_OUTPUT_CLOCK(hdfsdm_channel->Init.OutputClock.Selection)); in HAL_DFSDM_ChannelInit()
431 channel0Instance->CHCFGR1 |= hdfsdm_channel->Init.OutputClock.Selection; in HAL_DFSDM_ChannelInit()
/hal_stm32-latest/stm32cube/stm32f4xx/drivers/include/
Dstm32f4xx_hal_dfsdm.h60 uint32_t Selection; /*!< Output clock is system clock or audio clock. member