STM32-ADC認識
1、打開DMA和ADC1的時鐘。
本文引用地址:http://m.butianyuan.cn/article/201611/321617.htm在RCC_Configuration()中添加:
RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1, ENABLE);
2、配置模擬IO輸入口
在GPIO_Configuration()中配置
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0; //ADC0 -light
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1; //ADC9-sound
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;
GPIO_Init(GPIOB, &GPIO_InitStructure);
3、配置DMA初始化和ADC初始化
void DMA_Configuration(void)
void ADC1_Configuration(void)
4、啟動和讀值處理ADC數據
啟動:ADC_SoftwareStartConvCmd(ADC1, ENABLE);
等待DMA處理完成標志位:if(DMA_GetFlagStatus(DMA_FLAG_TC1)==1)
處理:
5、ADC硬件參考電壓的選擇:
void DMA_Configuration(void)
{
DMA_DeInit(DMA_Channel1);
DMA_InitStructure.DMA_PeripheralBaseAddr = ADC1_DR_Address;
DMA_InitStructure.DMA_MemoryBaseAddr = (u32)&ADC_ConvertedValue; // 定義DMA內存基地址
DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;
DMA_InitStructure.DMA_BufferSize = 3;
DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable; //外設寄存器地址不變
DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Word; //外設數據寬度32bit
DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Word;
DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
DMA_InitStructure.DMA_Priority = DMA_Priority_High; //DMA優(yōu)先級
DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
DMA_Cmd(DMA_Channel1, ENABLE);
}
void ADC1_Configuration(void)
{
ADC_InitStructure.ADC_Mode = ADC_Mode_Independent;// ADC1 ADC2 在獨立模式
ADC_InitStructure.ADC_ScanConvMode = ENABLE; //ENABLE-ADC多通道掃描, DISABLE-ADC單通道掃描
ADC_InitStructure.ADC_ContinuousConvMode = DISABLE; // ENABLE--ADC連續(xù)轉化模式 DISABLE--ADC單次轉化模式
ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None; //由軟件觸發(fā)
ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right; //數據向右對齊
ADC_InitStructure.ADC_NbrOfChannel = 3; //連續(xù)轉化3個AD通道值
ADC_Init(ADC1, &ADC_InitStructure);
//Enable Vrefint channel17
ADC_TempSensorVrefintCmd(ENABLE); //channel17
ADC_RegularChannelConfig(ADC1, ADC_Channel_17, 1, ADC_SampleTime_28Cycles5); //Vref
// ADC1 regular channel0 configuration
ADC_RegularChannelConfig(ADC1, ADC_Channel_0, 2, ADC_SampleTime_28Cycles5); //light
// ADC1 regular channel9 configuration
ADC_RegularChannelConfig(ADC1, ADC_Channel_9, 3, ADC_SampleTime_28Cycles5); //sound
// ADC_RegularChannelConfig(ADC1, ADC_Channel_1,4, ADC_SampleTime_55Cycles5); //voltage
// 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
while(ADC_GetResetCalibrationStatu
// Start ADC1 calibaration
ADC_StartCalibration(ADC1);
// Check the end of ADC1 calibration
while(ADC_GetCalibrationStatus(ADC1));
}
void ADC_process_Voltage_Light_Voice(void)
{
ADC_Cmd(ADC1, ENABLE);
DMA_Cmd(DMA_Channel1, ENABLE);
ADC_SoftwareStartConvCmd(ADC1, ENABLE);
// Delay(20);
{
}
adv[1] = (float)(ADC_ConvertedValue[1]&0x0fff)*1.2/(ADC_ConvertedValue[0]&0X0FFF); //放大100倍
DMA_Cmd(DMA_Channel1, DISABLE);
}
評論