编写一段使用stm32f103rct6芯片中运用dma接收数据的程序
时间: 2023-03-11 22:59:16 浏览: 176
使用stm32f103rct6芯片中运用DMA接收数据的程序,可以使用以下示例程序: // 定义DMA相关的参数
DMA_InitTypeDef DMA_InitStruct;
// 定义GPIO口
GPIO_InitTypeDef GPIO_InitStruct;
// 定义USART相关参数
USART_InitTypeDef USART_InitStruct; // 初始化DMA
DMA_InitStruct.DMA_PeripheralBaseAddr = (uint32_t) & USART1->DR;
DMA_InitStruct.DMA_MemoryBaseAddr = (uint32_t) buffer;
DMA_InitStruct.DMA_DIR = DMA_DIR_PeripheralSRC;
DMA_InitStruct.DMA_BufferSize = size;
DMA_InitStruct.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
DMA_InitStruct.DMA_MemoryInc = DMA_MemoryInc_Enable;
DMA_InitStruct.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
DMA_InitStruct.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;
DMA_InitStruct.DMA_Mode = DMA_Mode_Normal;
DMA_InitStruct.DMA_Priority = DMA_Priority_High;
DMA_InitStruct.DMA_M2M = DMA_M2M_Disable;
DMA_Init(DMA1_Channel5, &DMA_InitStruct); // 初始化GPIO
GPIO_StructInit(&GPIO_InitStruct);
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStruct); // 初始化USART
USART_StructInit(&USART_InitStruct);
USART_InitStruct.USART_BaudRate = 9600;
USART_InitStruct.USART_WordLength = USART_WordLength_8b;
USART_InitStruct.USART_StopBits = USART_StopBits_1;
USART_InitStruct.USART_Parity = USART_Parity_No;
USART_Init(USART1, &USART_InitStruct); // 使能USART和DMA
USART_DMACmd(USART1, USART_DMAReq_Rx, ENABLE);
DMA_Cmd(DMA1_Channel5, ENABLE); // 等待DMA传输结束
while (DMA_GetFlagStatus(DMA1_FLAG_TC5) == RESET)
{
// 等待
}
阅读全文