STM32F407 使用标准库通过串口USART2使用DMA进行串口数据的接收实例
时间: 2023-12-12 10:05:22 浏览: 150
下面是一个使用STM32F407标准库,通过USART2和DMA进行串口数据接收的示例代码。
首先,需要初始化USART2和DMA。以下是初始化USART2和DMA的函数:
```c
void USART2_DMA_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
DMA_InitTypeDef DMA_InitStructure;
// 使能GPIOA时钟
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
// 使能USART2时钟
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
// 使能DMA1时钟
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA1, ENABLE);
// 配置PA2为USART2的TX引脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 配置PA3为USART2的RX引脚
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 将PA2和PA3连接到USART2
GPIO_PinAFConfig(GPIOA, GPIO_PinSource2, GPIO_AF_USART2);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource3, GPIO_AF_USART2);
// 配置USART2
USART_InitStructure.USART_BaudRate = 115200;
USART_InitStructure.USART_WordLength = USART_WordLength_8b;
USART_InitStructure.USART_StopBits = USART_StopBits_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(USART2, &USART_InitStructure);
// 配置DMA1_Stream5
DMA_DeInit(DMA1_Stream5);
DMA_InitStructure.DMA_Channel = DMA_Channel_4;
DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralToMemory;
DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;
DMA_InitStructure.DMA_BufferSize = 100;
DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t)&(USART2->DR);
DMA_InitStructure.DMA_Memory0BaseAddr = (uint32_t)usart2_rx_buffer;
DMA_InitStructure.DMA_FIFOThreshold = DMA_FIFOThreshold_Full;
DMA_InitStructure.DMA_Priority = DMA_Priority_High;
DMA_InitStructure.DMA_FIFOMode = DMA_FIFOMode_Enable;
DMA_InitStructure.DMA_MemoryBurst = DMA_MemoryBurst_Single;
DMA_InitStructure.DMA_PeripheralBurst = DMA_PeripheralBurst_Single;
DMA_Init(DMA1_Stream5, &DMA_InitStructure);
// 使能USART2和DMA1_Stream5
USART_Cmd(USART2, ENABLE);
DMA_Cmd(DMA1_Stream5, ENABLE);
// 使能USART2的DMA接收
USART_DMACmd(USART2, USART_DMAReq_Rx, ENABLE);
}
```
在上述代码中,通过GPIO_Init()函数配置USART2的TX和RX引脚,然后通过USART_Init()函数配置USART2。使用DMA_Init()函数初始化DMA1_Stream5,并将其连接到USART2的DR寄存器。最后,使用USART_DMACmd()函数启用USART2的DMA接收。
接下来,需要设置一个DMA接收完成中断(Transfer Complete interrupt)。以下是设置DMA接收完成中断的函数:
```c
void DMA1_Stream5_IRQHandler(void)
{
if (DMA_GetITStatus(DMA1_Stream5, DMA_IT_TCIF5) != RESET)
{
DMA_ClearITPendingBit(DMA1_Stream5, DMA_IT_TCIF5);
DMA_Cmd(DMA1_Stream5, DISABLE);
DMA_SetCurrDataCounter(DMA1_Stream5, 100);
DMA_Cmd(DMA1_Stream5, ENABLE);
}
}
```
在上述代码中,使用DMA_GetITStatus()函数检查DMA接收完成中断是否已被触发。如果中断被触发,使用DMA_ClearITPendingBit()函数清除中断标志,并使用DMA_Cmd()函数禁用DMA1_Stream5。最后,使用DMA_SetCurrDataCounter()函数将DMA1_Stream5的数据计数器重置为100,并使用DMA_Cmd()函数重新启动DMA1_Stream5。
现在,可以使用以下代码在主函数中调用上述函数来初始化USART2和DMA:
```c
int main(void)
{
USART2_DMA_Init();
while (1)
{
}
}
```
最后,可以使用以下代码从usart2_rx_buffer数组中读取接收到的数据:
```c
uint8_t usart2_rx_buffer[100];
uint8_t usart2_rx_buffer_index = 0;
void USART2_IRQHandler(void)
{
if (USART_GetITStatus(USART2, USART_IT_RXNE) != RESET)
{
usart2_rx_buffer[usart2_rx_buffer_index++] = USART_ReceiveData(USART2);
if (usart2_rx_buffer_index >= 100)
{
usart2_rx_buffer_index = 0;
}
}
}
```
在上述代码中,使用USART_GetITStatus()函数检查USART2是否已接收到数据。如果有数据可用,使用USART_ReceiveData()函数将数据读取到usart2_rx_buffer数组中。最后,检查usart2_rx_buffer_index是否超过了数组的大小,如果是,则将其重置为0。
这是一个简单的使用STM32F407标准库通过USART2和DMA进行串口数据接收的示例。
阅读全文