谁配置过,双ADC慢速交替采集模式,指点下
ADC_InitTypeDef ADC_InitStructure;
ADC_DeInit(ADC1);
ADC_DeInit(ADC2);
DMA_DeInit(DMA1_Channel1);
//ADC1 configuration
ADC_InitStructure.ADC_Mode = ADC_Mode_SlowInterl;
ADC_InitStructure.ADC_ScanConvMode = DISABLE;
ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
ADC_InitStructure.ADC_NbrOfChannel = 1;
ADC_Init(ADC1, &ADC_InitStructure);
//ADC1 regular channel14 configuration
ADC_RegularChannelConfig(ADC1, ADC_Channel_10, 1, ADC_SampleTime_13Cycles5);
//Enable ADC1 DMA
ADC_DMACmd(ADC1, ENABLE);
//ADC2 configuration
ADC_InitStructure.ADC_Mode = ADC_Mode_SlowInterl;
ADC_InitStructure.ADC_ScanConvMode = DISABLE;
ADC_InitStructure.ADC_ContinuousConvMode = DISABLE;
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None;
ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right;
ADC_InitStructure.ADC_NbrOfChannel = 1;
ADC_Init(ADC2, &ADC_InitStructure);
//ADC2 regular channel14 configuration
ADC_RegularChannelConfig(ADC2, ADC_Channel_10, 1, ADC_SampleTime_13Cycles5);
// Enable ADC2 external trigger conversion
ADC_ExternalTrigConvCmd(ADC2, ENABLE);
//DMA Config
DMA_InitTypeDef DMA_InitStructure;
//DMA1 channel1 configuration
DMA_DeInit(DMA1_Channel1);
DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)&ADC_Adc->DR;//(uint32)ADC1_DR_Address;
DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)pCap_Line_Buf;//(uint32)&adc_data0[0];
DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
DMA_InitStructure.DMA_BufferSize = ROW_LENGTH;
DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word;
DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Word;
DMA_InitStructure.DMA_Mode = DMA_Mode_Normal;//连续触发
DMA_InitStructure.DMA_Priority = DMA_Priority_High;
DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
DMA_Init(DMA1_Channel1, &DMA_InitStructure);
//Enable DMA1 channel1
DMA_ITConfig(DMA1_Channel1, DMA_IT_TC, ENABLE);
//DMA_Cmd(DMA1_Channel1, ENABLE);
//Enable ADC1 DMA
ADC_DMACmd(ADC1, ENABLE);
//Enable ADC1
ADC_Cmd(ADC1, ENABLE);
Delay_1ms(1);
//Enable ADC1 reset calibaration register
ADC_ResetCalibration(ADC1);
//Check the end of ADC1 reset calibration register
while(ADC_GetResetCalibrationStatus(ADC1));
//Start ADC1 calibaration
ADC_StartCalibration(ADC1);
//Check the end of ADC1 calibration
while(ADC_GetCalibrationStatus(ADC1));
//Enable ADC2
ADC_Cmd(ADC2, ENABLE);
Delay_1ms(1);
//Enable ADC2 reset calibaration register
ADC_ResetCalibration(ADC2);
//Check the end of ADC2 reset calibration register
while(ADC_GetResetCalibrationStatus(ADC2));
//Start ADC2 calibaration
ADC_StartCalibration(ADC2);
//Check the end of ADC2 calibration
while(ADC_GetCalibrationStatus(ADC2));
//Start ADC1 Software Conversion
ADC_SoftwareStartConvCmd(ADC1, ENABLE);
这是我配置的慢速交替模式,手册上说这个模式下不能设置CONT位, 故我这样配置:ADC_InitStructure.ADC_ContinuousConvMode = DISABLE; 但在实际的采集中,每次好像只进行了一次adc转化,手册上说28个时钟周期后启动新的ADC2,不知道我配置的好像没有自动启动。
哪位大神了解的,指点下,谢谢了! |