2014-02-19 02:43 AM
If under the Multi ADC mode only one channel can be conversed
in one ADCs(adc1/adc2/adc3)2014-02-19 03:20 AM
Hi
''If under the Multi ADC mode only one channel can be conversed in one ADCs(adc1/adc2/adc3)'' Is this a statement or a question? If it is a question - it is unclear what you are asking?2014-02-19 03:55 AM
Hi!
It is a question. when I set ''ADC_CommonInitStructure.ADC_DMAAccessMode = ADC_DMAAccessMode_2;
/* ADC1 regular channel11 configuration Pin PC1*************************************/ ADC_RegularChannelConfig(ADC1, ADC_Channel_11, 1, ADC_SampleTime_3Cycles); /* ADC1 regular channel6 configuration Pin PA6*************************************/ ADC_RegularChannelConfig(ADC1, ADC_Channel_6, 2, ADC_SampleTime_3Cycles); /* ADC2 regular channel14 configuration Pin PC4*************************************/ ADC_RegularChannelConfig(ADC2, ADC_Channel_14, 1, ADC_SampleTime_3Cycles); /* ADC2 regular channel8 configuration Pin PB0*************************************/ ADC_RegularChannelConfig(ADC2, ADC_Channel_8, 2, ADC_SampleTime_3Cycles); '' that only (ADC1, ADC_Channel_11
)and(ADC2, ADC_Channel_14
)can be converted.Why the remaining channels couldn't be converted?2014-02-19 04:44 AM
Learn to post complete examples
ADC_InitStructure.ADC_ScanConvMode = ENABLE; // Multiple Channels ADC_InitStructure.ADC_NbrOfConversion = 2;2014-02-19 04:46 AM
2014-02-19 04:47 AM