2016-01-20 10:15 AM
I am trying to program an adc in stm32f4. I want to know what are the roles of these five instructions?
ADC_CommonInitStructure.ADC_Mode = ADC_Mode_Independent; ADC_CommonInitStructure.ADC_Prescaler = ADC_Prescaler_Div2; ADC_CommonInitStructure.ADC_DMAAccessMode = ADC_DMAAccessMode_Disabled;ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
0
http://stackoverflow.com/questions/34907325/understanding-some-adc-registers♯
I am trying to program an adc in stm32f4. I want to know what are the roles of these five instructions?
0
http://stackoverflow.com/questions/34907325/understanding-some-adc-registers♯
I am trying to program an adc in stm32f4. I want to know what are the roles of these five instructions?
0
http://stackoverflow.com/questions/34907325/understanding-some-adc-registers♯
I am trying to program an adc in stm32f4. I want to know what are the roles of these five instructions?
0
http://stackoverflow.com/questions/34907325/understanding-some-adc-registers♯
I am trying to program an adc in stm32f4. I want to know what are the roles of these five instructions?
0
http://stackoverflow.com/questions/34907325/understanding-some-adc-registers♯
I am trying to program an adc in stm32f4. I want to know what are the roles of these five instructions?
#stm32-adc2016-01-20 10:34 AM
Or even just four of them.
Independent, not tied to any other ADCx unit Prescaler, dividing down the clock from the APB/AHB to which it is attached. It will be units of this divided clock that the sample and conversion will be performed. A 12-bit conversion taking 12 cycles, plus whatever sample cycle are specified. DMA Access mode, defines the behaviour/ordering of the data supplied in response to a DMA request when multiple ADCx units are used. Not used here. Data Alignment, defines if the data is shifted into the top or bottom portion of the register. For right aligned, 12-bit data, the top 4 high order bits would be zero. I'm sure the Reference Manual describes and diagrams many of these things.2016-08-10 02:03 AM
Hello
Is possible, to config ADC1, ADC2 and ADC3 of mode independent?i.e. ADC3, in mode scan whith DMA PA0, PA1, PA2 and PA3. resolution 8bits.ADC1 in mode independent. for canals 16,17 and 18. request information this ADC1 channels every 5 sec.AD2 Interruption request information with 10bits resolution.