/hal_stm32-latest/stm32cube/stm32h7rsxx/drivers/src/ |
D | stm32h7rsxx_hal.c | 823 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/ |
D | stm32wbaxx_hal.c | 714 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/ |
D | stm32n6xx_hal.c | 1558 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/ |
D | stm32h7rsxx_hal.h | 685 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/ |
D | stm32wbaxx_hal.h | 659 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/ |
D | stm32n6xx_hal.h | 933 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/ |
D | stm32f4xx_hal_dfsdm.c | 437 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/ |
D | stm32l5xx_hal_dfsdm.h | 59 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
|
/hal_stm32-latest/stm32cube/stm32f7xx/drivers/include/ |
D | stm32f7xx_hal_dfsdm.h | 60 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
|
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/include/ |
D | stm32mp1xx_hal_dfsdm.h | 59 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
|
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/include/ |
D | stm32h7xx_hal_dfsdm.h | 59 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
|
/hal_stm32-latest/stm32cube/stm32mp1xx/drivers/src/ |
D | stm32mp1xx_hal_dfsdm.c | 397 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/ |
D | stm32f7xx_hal_dfsdm.c | 400 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/ |
D | stm32l4xx_hal_dfsdm.c | 409 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/ |
D | stm32l5xx_hal_dfsdm.c | 397 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/ |
D | stm32l4xx_hal_dfsdm.h | 65 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
|
/hal_stm32-latest/stm32cube/stm32h7xx/drivers/src/ |
D | stm32h7xx_hal_dfsdm.c | 428 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/ |
D | stm32f4xx_hal_dfsdm.h | 60 uint32_t Selection; /*!< Output clock is system clock or audio clock. member
|