void GPIO_Configuration(void) 
{ 
        GPIO_InitTypeDef GPIO_InitStructure; 
         
        //===================ADC =================================== 
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1|GPIO_Pin_2|GPIO_Pin_5|GPIO_Pin_6|GPIO_Pin_7; 
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN; 
        GPIO_Init(GPIOA, &GPIO_InitStructure); 
 
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; 
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN; 
        GPIO_Init(GPIOB, &GPIO_InitStructure); 
} 
 
void RCC_Configuration(void) 
{ 
        /* Enable GPIO clock */ 
        RCC_APB2PeriphClockCmd( RCC_APB2Periph_AFIO, ENABLE ); 
        RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOA, ENABLE ); 
        RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOB, ENABLE ); 
 
        /* TIM2 clock enable */ 
        RCC_APB1PeriphClockCmd( RCC_APB1Periph_TIM2, ENABLE ); 
        RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1 , ENABLE); 
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE); 
} 
 
 
 
void ADC_Configuration(void) 
{ 
        vu16 i; 
        ADC_InitTypeDef ADC_InitStructure; 
         
        ADC_InitStructure.ADC_Mode = ADC_Mode_Independent; 
        ADC_InitStructure.ADC_ScanConvMode = ENABLE; 
        ADC_InitStructure.ADC_ContinuousConvMode = DISABLE; 
        ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None; 
        ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right; 
        ADC_InitStructure.ADC_NbrOfChannel = 6; 
        ADC_Init(ADC1, &ADC_InitStructure); 
        /* ADC1 regular channel configuration */  
        ADC_RegularChannelConfig(ADC1, ADC_Channel_5, 1, ADC_SampleTime_13Cycles5); 
        ADC_RegularChannelConfig(ADC1, ADC_Channel_6, 2, ADC_SampleTime_13Cycles5); 
        ADC_RegularChannelConfig(ADC1, ADC_Channel_2, 3, ADC_SampleTime_13Cycles5); 
        ADC_RegularChannelConfig(ADC1, ADC_Channel_7, 4, ADC_SampleTime_13Cycles5); 
        ADC_RegularChannelConfig(ADC1, ADC_Channel_0, 5, ADC_SampleTime_13Cycles5); 
        ADC_RegularChannelConfig(ADC1, ADC_Channel_1, 6, ADC_SampleTime_13Cycles5); 
 
        /* Enable ADC1 DMA */ 
        ADC_DMACmd(ADC1, ENABLE);                 
                 
        /* Enable ADC1 */ 
        ADC_Cmd(ADC1, ENABLE); 
         
        /* Enable ADC1 reset calibaration register */    
        ADC_ResetCalibration(ADC1); 
        /* Check the end of ADC1 reset calibration register */ 
        i=0; 
        while((ADC_GetResetCalibrationStatus(ADC1))&&(i<3000)) 
        { 
                i++; 
        } 
        /* Start ADC1 calibaration */ 
        ADC_StartCalibration(ADC1); 
        /* Check the end of ADC1 calibration */ 
        i=0; 
        while((ADC_GetCalibrationStatus(ADC1))&&(i<3000)) 
        { 
                i++; 
        } 
} 
 
void DMA_Configuration(void) 
{ 
        DMA_InitTypeDef DMA_InitStructure; 
         
        /* DMA1 channel1 configuration ----------------------------------------------*/ 
        DMA_DeInit(DMA1_Channel1); 
        DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)ADC1_DR_Address; 
        DMA_InitStructure.DMA_MemoryBaseAddr = (uint32_t)&ADC_ConvertedValue; 
        DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC; 
        DMA_InitStructure.DMA_BufferSize =6; 
        DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable; 
        DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable; 
        DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_HalfWord; 
        DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_HalfWord; 
        DMA_InitStructure.DMA_Mode = DMA_Mode_Circular; 
        DMA_InitStructure.DMA_Priority = DMA_Priority_High; 
        DMA_InitStructure.DMA_M2M = DMA_M2M_Disable; 
        DMA_Init(DMA1_Channel1, &DMA_InitStructure); 
        /* Enable DMA1 channel1 interrupt*/ 
        DMA_ITConfig(DMA1_Channel1,DMA_IT_TC,ENABLE); 
        /* Enable DMA1 Channel1 */ 
        DMA_Cmd(DMA1_Channel1, ENABLE); 
} 
 
void NVIC_Configuration(void) 
{ 
        NVIC_InitTypeDef NVIC_InitStructure; 
 
        /* Configure the NVIC Preemption Priority Bits */   
        NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0); 
 
        /* Enable the TIM2 global Interrupt */ 
        NVIC_InitStructure.NVIC_IRQChannel = TIM2_IRQn; 
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1; 
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0; 
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; 
        NVIC_Init(&NVIC_InitStructure); 
 
        NVIC_InitStructure.NVIC_IRQChannel = DMA1_Channel1_IRQn; //设置中断通道  
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority =1; 
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0; 
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; 
        NVIC_Init(&NVIC_InitStructure); 
}
 |