本文主要是介绍作用是把adc的数据用DMA送到内存(一个数组),用另一通道DMA送到串口,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
extern uint16_t SendBuff[SENDBUFF_SIZE];/** 函数名:USART1_Config* 描述 :USART1 GPIO 配置,工作模式配置。115200 8-N-1* 输入 :无* 输出 : 无* 调用 :外部调用*/void USART1_Config(void)
{GPIO_InitTypeDef GPIO_InitStructure;USART_InitTypeDef USART_InitStructure;/* config USART1 clock */RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);/* USART1 GPIO config *//* Configure USART1 Tx (PA.09) as alternate function push-pull */GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;GPIO_Init(GPIOA, &GPIO_InitStructure); /* Configure USART1 Rx (PA.10) as input floating */GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;GPIO_Init(GPIOA, &GPIO_InitStructure);/* USART1 mode config */USART_InitStructure.USART_BaudRate = 115200;USART_InitStructure.USART_WordLength = USART_WordLength_8b; //8位有效字长USART_InitStructure.USART_StopBits = USART_StopBits_1; //1位停止位USART_InitStructure.USART_Parity = USART_Parity_No ; //无奇偶校验位USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None; //无硬件数据流控制USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; //可收可发模式USART_Init(USART1, &USART_InitStructure); USART_Cmd(USART1, ENABLE);
}void DMA_USART_Init(void)
{DMA_InitTypeDef DMA_InitStructure;RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE); //开启DMA时钟/*设置DMA源:内存地址&串口数据寄存器地址*/DMA_InitStructure.DMA_PeripheralBaseAddr = USART1_DR_Base; /*内存地址(要传输的变量的指针)*/DMA_InitStructure.DMA_MemoryBaseAddr = (u32)SendBuff;/*方向:从内存到外设*/ DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralDST; /*传输大小DMA_BufferSize=SENDBUFF_SIZE*/ DMA_InitStructure.DMA_BufferSize = SENDBUFF_SIZE;/*外设地址不增*/ DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable; /*内存地址自增*/DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable; /*外设数据单位*/ DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;/*内存数据单位 8bit Byte 16位 HalfWord 32位 Word */DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte; /*DMA模式:一次传输,循环*/DMA_InitStructure.DMA_Mode = DMA_Mode_Circular ; /*优先级:中*/ DMA_InitStructure.DMA_Priority = DMA_Priority_Medium; /*禁止内存到内存的传输 */DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;/*配置DMA1的4通道*/ DMA_Init(DMA1_Channel4, &DMA_InitStructure); DMA_Cmd (DMA1_Channel4,ENABLE); //使能DMA}
/ ADC uint16_t SendBuff[SENDBUFF_SIZE];static void ADC1_GPIO_Config(void)
{GPIO_InitTypeDef GPIO_InitStructure;/* Enable ADC1 and GPIOA clock */RCC_APB2PeriphClockCmd(RCC_APB2Periph_ADC1 | RCC_APB2Periph_GPIOA, ENABLE);/* Configure PC.01 as analog input */GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AIN;GPIO_Init(GPIOA, &GPIO_InitStructure); // PC1,输入时不用设置速率
}/* 函数名:ADC1_Mode_Config* 描述 :配置ADC1的工作模式为MDA模式* 输入 : 无* 输出 :无* 调用 :内部调用*/
static void ADC1_Mode_Config(void)
{ADC_InitTypeDef ADC_InitStructure;/* ADC1 configuration */ADC_InitStructure.ADC_Mode = ADC_Mode_Independent; //独立ADC模式ADC_InitStructure.ADC_ScanConvMode = DISABLE ; //禁止扫描模式,扫描模式用于多通道采集ADC_InitStructure.ADC_ContinuousConvMode = ENABLE; //开启连续转换模式,即不停地进行ADC转换ADC_InitStructure.ADC_ExternalTrigConv = ADC_ExternalTrigConv_None; //不使用外部触发转换ADC_InitStructure.ADC_DataAlign = ADC_DataAlign_Right; //采集数据右对齐ADC_InitStructure.ADC_NbrOfChannel = 1; //要转换的通道数目1ADC_Init(ADC1, &ADC_InitStructure);/*配置ADC时钟,为PCLK2的8分频,即9Hz*/RCC_ADCCLKConfig(RCC_PCLK2_Div8); /*配置ADC1的通道0为55. 5个采样周期,序列为1 */ ADC_RegularChannelConfig(ADC1, ADC_Channel_0, 1, ADC_SampleTime_55Cycles5);/* Enable ADC1 */ADC_Cmd(ADC1, ENABLE);/*复位校准寄存器 */ ADC_ResetCalibration(ADC1);/*等待校准寄存器复位完成 */while(ADC_GetResetCalibrationStatus(ADC1));/* ADC校准 */ADC_StartCalibration(ADC1);/* 等待校准完成*/while(ADC_GetCalibrationStatus(ADC1));/* 由于没有采用外部触发,所以使用软件触发ADC转换 */ ADC_SoftwareStartConvCmd(ADC1, ENABLE);
}/* 函数名:DMA_Mode_Config* 描述 :配置ADC1的工作模式为MDA模式* 输入 : 无* 输出 :无* 调用 :内部调用*/
static void DMA1_Mode_Config(void)
{DMA_InitTypeDef DMA_InitStructure;/* Enable DMA clock */RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);/* DMA channel1 configuration */DMA_DeInit(DMA1_Channel1);DMA_InitStructure.DMA_PeripheralBaseAddr = ADC1_DR_Address; //ADC地址DMA_InitStructure.DMA_MemoryBaseAddr = (u32)SendBuff;//内存地址DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralSRC;DMA_InitStructure.DMA_BufferSize = SENDBUFF_SIZE;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 DMA channel1 */DMA_Cmd(DMA1_Channel1, ENABLE);/* Enable ADC1 DMA */ADC_DMACmd(ADC1, ENABLE);
}/** 函数名:ADC1_Init* 描述 :无* 输入 :无* 输出 :无* 调用 :外部调用*/
void ADC1_Init(void)
{ADC1_GPIO_Config();ADC1_Mode_Config();DMA1_Mode_Config();
}///int main(void)
{/* 配置系统时钟为 72M */ SystemInit();/* USART1 config */USART1_Config();DMA_USART_Init();/* enable adc1 and config adc1 to dma mode */ADC1_Init();/*串口向 DMA发出请求,开启DMA传输 */USART_DMACmd(USART1, USART_DMAReq_Tx, ENABLE); printf("\r\n -------这是一个ADC实验------\r\n");while (1){ } }
这篇关于作用是把adc的数据用DMA送到内存(一个数组),用另一通道DMA送到串口的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!