Home
last modified time | relevance | path

Searched refs:pConfig (Results 1 – 25 of 28) sorted by relevance

12

/hal_stm32-3.5.0/stm32cube/stm32g4xx/drivers/src/
Dstm32g4xx_hal_fmac.c330 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig,
803 …L_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig() argument
805 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_POLLING)); in HAL_FMAC_FilterConfig()
819 …atusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig_DMA() argument
821 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_DMA)); in HAL_FMAC_FilterConfig_DMA()
1646 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig, in FMAC_FilterConfig() argument
1656 assert_param(IS_FMAC_THRESHOLD(pConfig->InputThreshold)); in FMAC_FilterConfig()
1657 assert_param(IS_FMAC_THRESHOLD(pConfig->OutputThreshold)); in FMAC_FilterConfig()
1658 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->InputAccess)); in FMAC_FilterConfig()
1659 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->OutputAccess)); in FMAC_FilterConfig()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32h7xx/drivers/src/
Dstm32h7xx_hal_fmac.c330 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig,
800 …L_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig() argument
802 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_POLLING)); in HAL_FMAC_FilterConfig()
816 …atusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig_DMA() argument
818 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_DMA)); in HAL_FMAC_FilterConfig_DMA()
1643 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig, in FMAC_FilterConfig() argument
1653 assert_param(IS_FMAC_THRESHOLD(pConfig->InputThreshold)); in FMAC_FilterConfig()
1654 assert_param(IS_FMAC_THRESHOLD(pConfig->OutputThreshold)); in FMAC_FilterConfig()
1655 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->InputAccess)); in FMAC_FilterConfig()
1656 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->OutputAccess)); in FMAC_FilterConfig()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32u5xx/drivers/src/
Dstm32u5xx_hal_fmac.c330 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig,
800 …L_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig() argument
802 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_POLLING)); in HAL_FMAC_FilterConfig()
816 …atusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig_DMA() argument
818 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_DMA)); in HAL_FMAC_FilterConfig_DMA()
1643 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig, in FMAC_FilterConfig() argument
1654 assert_param(IS_FMAC_THRESHOLD(pConfig->InputThreshold)); in FMAC_FilterConfig()
1655 assert_param(IS_FMAC_THRESHOLD(pConfig->OutputThreshold)); in FMAC_FilterConfig()
1656 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->InputAccess)); in FMAC_FilterConfig()
1657 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->OutputAccess)); in FMAC_FilterConfig()
[all …]
Dstm32u5xx_hal_adc.c3303 HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
3318 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
3319 assert_param(IS_ADC_SAMPLE_TIME(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
3320 assert_param(IS_ADC_SINGLE_DIFFERENTIAL(pConfig->SingleDiff)); in HAL_ADC_ConfigChannel()
3321 assert_param(IS_ADC_OFFSET_NUMBER(pConfig->OffsetNumber)); in HAL_ADC_ConfigChannel()
3322 assert_param(IS_ADC_RANGE(hadc->Instance, ADC_GET_RESOLUTION(hadc), pConfig->Offset)); in HAL_ADC_ConfigChannel()
3325 …assert_param(!((pConfig->OffsetNumber != ADC_OFFSET_NONE) && (hadc->Init.OversamplingMode == ENABL… in HAL_ADC_ConfigChannel()
3328 if (pConfig->SingleDiff != ADC_DIFFERENTIAL_ENDED) in HAL_ADC_ConfigChannel()
3330 assert_param(IS_ADC_CHANNEL(pConfig->Channel)); in HAL_ADC_ConfigChannel()
3335 assert_param(IS_ADC12_DIFF_CHANNEL(pConfig->Channel)); in HAL_ADC_ConfigChannel()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32h5xx/drivers/src/
Dstm32h5xx_hal_fmac.c330 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig,
800 …L_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig() argument
802 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_POLLING)); in HAL_FMAC_FilterConfig()
816 …atusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig) in HAL_FMAC_FilterConfig_DMA() argument
818 return (FMAC_FilterConfig(hfmac, pConfig, PRELOAD_ACCESS_DMA)); in HAL_FMAC_FilterConfig_DMA()
1643 …c HAL_StatusTypeDef FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig, in FMAC_FilterConfig() argument
1654 assert_param(IS_FMAC_THRESHOLD(pConfig->InputThreshold)); in FMAC_FilterConfig()
1655 assert_param(IS_FMAC_THRESHOLD(pConfig->OutputThreshold)); in FMAC_FilterConfig()
1656 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->InputAccess)); in FMAC_FilterConfig()
1657 assert_param(IS_FMAC_BUFFER_ACCESS(pConfig->OutputAccess)); in FMAC_FilterConfig()
[all …]
Dstm32h5xx_hal_adc.c2805 …StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, const ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
2816 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2817 assert_param(IS_ADC_SAMPLE_TIME(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
2818 assert_param(IS_ADC_SINGLE_DIFFERENTIAL(pConfig->SingleDiff)); in HAL_ADC_ConfigChannel()
2819 assert_param(IS_ADC_OFFSET_NUMBER(pConfig->OffsetNumber)); in HAL_ADC_ConfigChannel()
2820 assert_param(IS_ADC_RANGE(ADC_GET_RESOLUTION(hadc), pConfig->Offset)); in HAL_ADC_ConfigChannel()
2824 …assert_param(!((pConfig->OffsetNumber != ADC_OFFSET_NONE) && (hadc->Init.OversamplingMode == ENABL… in HAL_ADC_ConfigChannel()
2827 if (pConfig->SingleDiff != ADC_DIFFERENTIAL_ENDED) in HAL_ADC_ConfigChannel()
2829 assert_param(IS_ADC_CHANNEL(hadc, pConfig->Channel)); in HAL_ADC_ConfigChannel()
2833 assert_param(IS_ADC_DIFF_CHANNEL(hadc, pConfig->Channel)); in HAL_ADC_ConfigChannel()
[all …]
Dstm32h5xx_hal_i3c.c1548 const LL_I3C_CtrlBusConfTypeDef *pConfig) in HAL_I3C_Ctrl_BusCharacteristicConfig() argument
1566 if (pConfig == NULL) in HAL_I3C_Ctrl_BusCharacteristicConfig()
1580 assert_param(IS_I3C_SDAHOLDTIME_VALUE(pConfig->SDAHoldTime)); in HAL_I3C_Ctrl_BusCharacteristicConfig()
1581 assert_param(IS_I3C_WAITTIME_VALUE(pConfig->WaitTime)); in HAL_I3C_Ctrl_BusCharacteristicConfig()
1588 waveform_value = ((uint32_t)pConfig->SCLPPLowDuration | in HAL_I3C_Ctrl_BusCharacteristicConfig()
1589 ((uint32_t)pConfig->SCLI3CHighDuration << I3C_TIMINGR0_SCLH_I3C_Pos) | in HAL_I3C_Ctrl_BusCharacteristicConfig()
1590 ((uint32_t)pConfig->SCLODLowDuration << I3C_TIMINGR0_SCLL_OD_Pos) | in HAL_I3C_Ctrl_BusCharacteristicConfig()
1591 ((uint32_t)pConfig->SCLI2CHighDuration << I3C_TIMINGR0_SCLH_I2C_Pos)); in HAL_I3C_Ctrl_BusCharacteristicConfig()
1597 timing_value = ((uint32_t)pConfig->SDAHoldTime | in HAL_I3C_Ctrl_BusCharacteristicConfig()
1598 (uint32_t)pConfig->WaitTime | in HAL_I3C_Ctrl_BusCharacteristicConfig()
[all …]
Dstm32h5xx_util_i3c.c61 ErrorStatus I3C_CtrlTimingComputation(LL_I3C_CtrlBusConfTypeDef *pConfig, uint32_t clockSrcFreq, ui… in I3C_CtrlTimingComputation() argument
311 pConfig->SCLPPLowDuration = (uint8_t)scllpp; in I3C_CtrlTimingComputation()
312 pConfig->SCLI3CHighDuration = (uint8_t)sclhi3c; in I3C_CtrlTimingComputation()
313 pConfig->SCLODLowDuration = (uint8_t)scllod; in I3C_CtrlTimingComputation()
314 pConfig->SCLI2CHighDuration = (uint8_t)sclhi2c; in I3C_CtrlTimingComputation()
317 pConfig->BusFreeDuration = (uint8_t)free; in I3C_CtrlTimingComputation()
318 pConfig->BusIdleDuration = (uint8_t)oneus; in I3C_CtrlTimingComputation()
319 pConfig->SDAHoldTime = (uint32_t)(sdahold << I3C_TIMINGR1_SDA_HD_Pos); in I3C_CtrlTimingComputation()
335 ErrorStatus I3C_TgtTimingComputation(LL_I3C_TgtBusConfTypeDef *pConfig, uint32_t clockSrcFreq) in I3C_TgtTimingComputation() argument
365 pConfig->BusAvailableDuration = (uint8_t)oneus; in I3C_TgtTimingComputation()
/hal_stm32-3.5.0/stm32cube/stm32mp1xx/drivers/src/
Dstm32mp1xx_hal_adc.c2686 HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
2697 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2698 assert_param(IS_ADC_SAMPLE_TIME(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
2699 assert_param(IS_ADC_SINGLE_DIFFERENTIAL(pConfig->SingleDiff)); in HAL_ADC_ConfigChannel()
2700 assert_param(IS_ADC_OFFSET_NUMBER(pConfig->OffsetNumber)); in HAL_ADC_ConfigChannel()
2704 …assert_param(IS_ADC_RANGE(ADC_GET_RESOLUTION(hadc), pConfig->Offset/(hadc->Init.Oversampling.Ratio… in HAL_ADC_ConfigChannel()
2708 assert_param(IS_ADC_RANGE(ADC_GET_RESOLUTION(hadc), pConfig->Offset)); in HAL_ADC_ConfigChannel()
2713 …assert_param(!((pConfig->OffsetNumber != ADC_OFFSET_NONE) && (hadc->Init.OversamplingMode == ENABL… in HAL_ADC_ConfigChannel()
2716 if (pConfig->SingleDiff != ADC_DIFFERENTIAL_ENDED) in HAL_ADC_ConfigChannel()
2718 assert_param(IS_ADC_CHANNEL(pConfig->Channel)); in HAL_ADC_ConfigChannel()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32l5xx/drivers/src/
Dstm32l5xx_hal_adc.c2700 …StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, const ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
2711 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2712 assert_param(IS_ADC_SAMPLE_TIME(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
2713 assert_param(IS_ADC_SINGLE_DIFFERENTIAL(pConfig->SingleDiff)); in HAL_ADC_ConfigChannel()
2714 assert_param(IS_ADC_OFFSET_NUMBER(pConfig->OffsetNumber)); in HAL_ADC_ConfigChannel()
2715 assert_param(IS_ADC_RANGE(ADC_GET_RESOLUTION(hadc), pConfig->Offset)); in HAL_ADC_ConfigChannel()
2719 …assert_param(!((pConfig->OffsetNumber != ADC_OFFSET_NONE) && (hadc->Init.OversamplingMode == ENABL… in HAL_ADC_ConfigChannel()
2722 if (pConfig->SingleDiff != ADC_DIFFERENTIAL_ENDED) in HAL_ADC_ConfigChannel()
2724 assert_param(IS_ADC_CHANNEL(hadc, pConfig->Channel)); in HAL_ADC_ConfigChannel()
2728 assert_param(IS_ADC_DIFF_CHANNEL(hadc, pConfig->Channel)); in HAL_ADC_ConfigChannel()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32wlxx/drivers/src/
Dstm32wlxx_hal_adc.c2159 HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
2167 assert_param(IS_ADC_CHANNEL(pConfig->Channel)); in HAL_ADC_ConfigChannel()
2168 assert_param(IS_ADC_SAMPLING_TIME_COMMON(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
2173 assert_param(IS_ADC_REGULAR_RANK_SEQ_FIXED(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2179 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2199 if (pConfig->Rank != ADC_RANK_NONE) in HAL_ADC_ConfigChannel()
2212 LL_ADC_REG_SetSequencerChAdd(hadc->Instance, pConfig->Channel); in HAL_ADC_ConfigChannel()
2221 ADC_CHSELR_SQ1 << (pConfig->Rank & 0x1FUL), in HAL_ADC_ConfigChannel()
2222 __LL_ADC_CHANNEL_TO_DECIMAL_NB(pConfig->Channel) << (pConfig->Rank & 0x1FUL)); in HAL_ADC_ConfigChannel()
2228 if (((pConfig->Rank >> 2UL) + 1UL) <= hadc->Init.NbrOfConversion) in HAL_ADC_ConfigChannel()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32g0xx/drivers/src/
Dstm32g0xx_hal_adc.c2158 HAL_StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
2166 assert_param(IS_ADC_CHANNEL(pConfig->Channel)); in HAL_ADC_ConfigChannel()
2167 assert_param(IS_ADC_SAMPLING_TIME_COMMON(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
2172 assert_param(IS_ADC_REGULAR_RANK_SEQ_FIXED(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2178 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2198 if (pConfig->Rank != ADC_RANK_NONE) in HAL_ADC_ConfigChannel()
2211 LL_ADC_REG_SetSequencerChAdd(hadc->Instance, pConfig->Channel); in HAL_ADC_ConfigChannel()
2220 ADC_CHSELR_SQ1 << (pConfig->Rank & 0x1FUL), in HAL_ADC_ConfigChannel()
2221 __LL_ADC_CHANNEL_TO_DECIMAL_NB(pConfig->Channel) << (pConfig->Rank & 0x1FUL)); in HAL_ADC_ConfigChannel()
2227 if (((pConfig->Rank >> 2UL) + 1UL) <= hadc->Init.NbrOfConversion) in HAL_ADC_ConfigChannel()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32wbaxx/drivers/src/
Dstm32wbaxx_hal_adc.c2213 …StatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, const ADC_ChannelConfTypeDef *pConfig) in HAL_ADC_ConfigChannel() argument
2221 assert_param(IS_ADC_CHANNEL(pConfig->Channel)); in HAL_ADC_ConfigChannel()
2222 assert_param(IS_ADC_SAMPLING_TIME_COMMON(pConfig->SamplingTime)); in HAL_ADC_ConfigChannel()
2227 assert_param(IS_ADC_REGULAR_RANK_SEQ_FIXED(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2233 assert_param(IS_ADC_REGULAR_RANK(pConfig->Rank)); in HAL_ADC_ConfigChannel()
2253 if (pConfig->Rank != ADC_RANK_NONE) in HAL_ADC_ConfigChannel()
2266 LL_ADC_REG_SetSequencerChAdd(hadc->Instance, pConfig->Channel); in HAL_ADC_ConfigChannel()
2275 ADC_CHSELR_SQ1 << (pConfig->Rank & 0x1FUL), in HAL_ADC_ConfigChannel()
2276 __LL_ADC_CHANNEL_TO_DECIMAL_NB(pConfig->Channel) << (pConfig->Rank & 0x1FUL)); in HAL_ADC_ConfigChannel()
2282 if (((pConfig->Rank >> 2UL) + 1UL) <= hadc->Init.NbrOfConversion) in HAL_ADC_ConfigChannel()
[all …]
Dstm32wbaxx_hal_rcc_ex.c1248 void HAL_RCCEx_LSI2SetConfig(const RCC_LSIConfigTypeDef *pConfig) in HAL_RCCEx_LSI2SetConfig() argument
1251 assert_param(pConfig != NULL); in HAL_RCCEx_LSI2SetConfig()
1252 assert_param(IS_RCC_LSI2_FREQTEMPSENS(pConfig->FreqTempSens)); in HAL_RCCEx_LSI2SetConfig()
1253 assert_param(IS_RCC_LSI2_OPERATINGMODE(pConfig->OpMode)); in HAL_RCCEx_LSI2SetConfig()
1255 WRITE_REG(RCC->BDCR2, (pConfig->FreqTempSens | pConfig->OpMode)); in HAL_RCCEx_LSI2SetConfig()
1264 void HAL_RCCEx_LSI2GetConfig(RCC_LSIConfigTypeDef *pConfig) in HAL_RCCEx_LSI2GetConfig() argument
1269 assert_param(pConfig != NULL); in HAL_RCCEx_LSI2GetConfig()
1274 pConfig->FreqTempSens = (regbdcr2 & RCC_BDCR2_LSI2CFG); in HAL_RCCEx_LSI2GetConfig()
1275 pConfig->OpMode = (regbdcr2 & RCC_BDCR2_LSI2MODE); in HAL_RCCEx_LSI2GetConfig()
/hal_stm32-3.5.0/stm32cube/stm32h5xx/drivers/include/
Dstm32h5xx_hal_i3c.h1068 const LL_I3C_CtrlBusConfTypeDef *pConfig);
1070 const LL_I3C_TgtBusConfTypeDef *pConfig);
1071 HAL_StatusTypeDef HAL_I3C_SetConfigFifo(I3C_HandleTypeDef *hi3c, const I3C_FifoConfTypeDef *pConfig
1072 HAL_StatusTypeDef HAL_I3C_Ctrl_Config(I3C_HandleTypeDef *hi3c, const I3C_CtrlConfTypeDef *pConfig);
1073 HAL_StatusTypeDef HAL_I3C_Tgt_Config(I3C_HandleTypeDef *hi3c, const I3C_TgtConfTypeDef *pConfig);
1096 HAL_StatusTypeDef HAL_I3C_GetConfigFifo(I3C_HandleTypeDef *hi3c, I3C_FifoConfTypeDef *pConfig);
Dstm32h5xx_util_i3c.h41 ErrorStatus I3C_CtrlTimingComputation(LL_I3C_CtrlBusConfTypeDef *pConfig, uint32_t clockSrcFreq, ui…
43 ErrorStatus I3C_TgtTimingComputation(LL_I3C_TgtBusConfTypeDef *pConfig, uint32_t clockSrcFreq);
Dstm32h5xx_hal_fmac.h660 …_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
661 …tusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32h7xx/drivers/include/
Dstm32h7xx_hal_fmac.h642 …_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
643 …tusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32g4xx/drivers/include/
Dstm32g4xx_hal_fmac.h623 …_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
624 …tusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32u5xx/drivers/include/
Dstm32u5xx_hal_fmac.h660 …_StatusTypeDef HAL_FMAC_FilterConfig(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
661 …tusTypeDef HAL_FMAC_FilterConfig_DMA(FMAC_HandleTypeDef *hfmac, FMAC_FilterConfigTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32wbaxx/drivers/include/
Dstm32wbaxx_hal_rcc_ex.h792 void HAL_RCCEx_LSI2SetConfig(const RCC_LSIConfigTypeDef *pConfig);
793 void HAL_RCCEx_LSI2GetConfig(RCC_LSIConfigTypeDef *pConfig);
Dstm32wbaxx_hal_adc.h1805 …ypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, const ADC_ChannelConfTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32wlxx/drivers/include/
Dstm32wlxx_hal_adc.h1862 …tatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, ADC_ChannelConfTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32l5xx/drivers/include/
Dstm32l5xx_hal_adc.h1865 …ypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, const ADC_ChannelConfTypeDef *pConfig);
/hal_stm32-3.5.0/stm32cube/stm32g0xx/drivers/include/
Dstm32g0xx_hal_adc.h1899 …tatusTypeDef HAL_ADC_ConfigChannel(ADC_HandleTypeDef *hadc, ADC_ChannelConfTypeDef *pConfig);

12