使用串口可以提高CPU的利用率。在程序中处理流程如下:
一:串口初始化
1.配置串口时钟
在void Rcc_Configuration(void)函数中实现
- void Rcc_Configuration(void)
- {
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO,ENABLE);
- RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1,ENABLE);
- }
2.配置串口管脚
在void UsartGPIO_Configuration(void)中实现
- void UsartGPIO_Configuration(void)
- {
- GPIO_InitTypeDef GPIO_InitStruct;
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;
- GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9;
- GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
- GPIO_Init(GPIOA, &GPIO_InitStruct);
- GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;
- GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10;
-
- GPIO_Init(GPIOA, &GPIO_InitStruct);
- }
3.初始化参数设置
- USART_InitStruct.USART_BaudRate = 115200;
- USART_InitStruct.USART_StopBits = USART_StopBits_1;
- USART_InitStruct.USART_WordLength = USART_WordLength_8b;
- USART_InitStruct.USART_Parity = USART_Parity_No;
- USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
- USART_InitStruct.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
-
- USART_Init(USART1, &USART_InitStruct);
注意:设置参数时只需要向串口初始化数据结构体中写入相应的配置参数,然后调用USART_Init函数将信息写入处理器即可。
4.串口中断配置
调用USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);函数实现。允许串口1接收中断。
5.调用USART_Cmd(USART1, ENABLE);函数使能串口1中断。
完整的串口初始化代码如下:
- void usart_Configuration(void)
- {
- USART_InitTypeDef USART_InitStruct;
- Rcc_Configuration();
- UsartGPIO_Configuration();
- USART_InitStruct.USART_BaudRate = 115200;
- USART_InitStruct.USART_StopBits = USART_StopBits_1;
- USART_InitStruct.USART_WordLength = USART_WordLength_8b;
- USART_InitStruct.USART_Parity = USART_Parity_No;
- USART_InitStruct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
- USART_InitStruct.USART_Mode = USART_Mode_Tx | USART_Mode_Rx;
- USART_Init(USART1, &USART_InitStruct);
- USART_ITConfig(USART1,USART_IT_RXNE,ENABLE);
- USART_Cmd(USART1, ENABLE);
- }
阅读(9407) | 评论(0) | 转发(0) |