2014-03-26 07:52 PM
Hi ,
I am reading up on STM32F4 ADC and have problem understanding a few points .ADC_InitStructure.ADC_ExternalTrigConv =ADC_ExternalTrigConv_T3_CC1 ;
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_T3_TRGO ;
What is the different between this 2 statement does it mean that TRGO does not take up any of the T3 Channel i.e. I can still program 4 channels of Tim3 as PWM and use TRGO as a trigger ?
Thanks.
#adc-stm32f4
2014-03-26 08:36 PM
Got to configure the TRGO to something, if not CC[1..4], then Update?
2014-03-26 10:07 PM
ADC_ExternalTrigConv_T3_CC1
ADC_ExternalTrigConv_T3_CC2
ADC_ExternalTrigConv_T3_CC3
ADC_ExternalTrigConv_T3_CC4
ADC_ExternalTrigConv_T3_TRGOas the trigger for my ADC ?ADC_ExternalTrigConv_T3_TRGO
is always accompanied by the followingTIM_SelectOutputTrigger(TIM3, TIM_TRGOSource_Update);It there aneed if i am using the CC channels ?Thanks