在实际开发中,经常遇到串口的默认输出IO口被其他模块占用了,所以我们要用到串口IO口映射功能,是指将原来实现功能的IO口映射到其他指定IO口,其他不变。具体操作如下:
先贴出默认下的串口初始化设置:
void USART1Conf(u32 baudRate)
{
USART_InitTypeDef USART_InitSturct;//定义串口1的初始化结构体
GPIO_InitTypeDef GPIO_InitStruct;//定义串口对应管脚的结构体
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA , ENABLE);//打开串口管脚时钟
//USART1_Tx_Pin Configure
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_9;//输出引脚
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_2MHz;//设置最高速度50MHz
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;//推挽复用输出
GPIO_Init(GPIOA , &GPIO_InitStruct);//将初始化好的结构体装入寄存器
//USART1_Rx_Pin Configure
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;//GPIO模式悬浮输入
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_10;//输入引脚
GPIO_Init(GPIOA, &GPIO_InitStruct);//将初始化好的结构体装入寄存器
//USART1 Configure
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 , ENABLE);//时钟使能
USART_InitSturct.USART_BaudRate = baudRate;//波特率19200
USART_InitSturct.USART_WordLength = USART_WordLength_8b;//数据宽度8位
USART_InitSturct.USART_StopBits = USART_StopBits_1;//一个停止位
USART_InitSturct.USART_Parity = USART_Parity_No;//无奇偶校验
USART_InitSturct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitSturct.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;//使能发送与接收
USART_Init(USART1 , &USART_InitSturct);//将初始化好的结构体装入寄存器
//USART1_INT Configure
USART_ITConfig(USART1 , USART_IT_RXNE , ENABLE);//使能接收中断
//USART_ITConfig(USART1 , USART_IT_TXE , ENABLE);
USART_Cmd(USART1 , ENABLE);//打开串口
USART_ClearFlag(USART1 , USART_FLAG_TC);//解决第一个数据发送失败的问题
}
下面是映射后的串口设置,根据datasheet,重映射设置IO口: Rx: PA9 ---- PB6 Tx: PA10 ------ PB7
void USART1Conf(u32 baudRate)
{
USART_InitTypeDef USART_InitSturct;//定义串口1的初始化结构体
GPIO_InitTypeDef GPIO_InitStruct;//定义串口对应管脚的结构体
//使用串口IO口映射功能 add by LC 2015.07.01 18:03
//重映射设置 PA9 ---- PB6 PA10 ------ PB7
RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);//使能要映射IO模块
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOB , ENABLE);//打开串口管脚时钟
//USART1_Tx_Pin Configure
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_6;//输出引脚
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_2MHz;//设置最高速度50MHz
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_AF_PP;//推挽复用输出
GPIO_Init(GPIOB , &GPIO_InitStruct);//将初始化好的结构体装入寄存器
//USART1_Rx_Pin Configure
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IN_FLOATING;//GPIO模式悬浮输入
GPIO_InitStruct.GPIO_Pin = GPIO_Pin_7;//输入引脚
GPIO_Init(GPIOB, &GPIO_InitStruct);//将初始化好的结构体装入寄存器
GPIO_PinRemapConfig(GPIO_Remap_USART1,ENABLE);
//end by LC 2015.07.01 18:03
//USART1 Configure
RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 , ENABLE);//时钟使能
USART_InitSturct.USART_BaudRate = baudRate;//波特率19200
USART_InitSturct.USART_WordLength = USART_WordLength_8b;//数据宽度8位
USART_InitSturct.USART_StopBits = USART_StopBits_1;//一个停止位
USART_InitSturct.USART_Parity = USART_Parity_No;//无奇偶校验
USART_InitSturct.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
USART_InitSturct.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;//使能发送与接收
USART_Init(USART1 , &USART_InitSturct);//将初始化好的结构体装入寄存器
//USART1_INT Configure
USART_ITConfig(USART1 , USART_IT_RXNE , ENABLE);//使能接收中断
//USART_ITConfig(USART1 , USART_IT_TXE , ENABLE);
USART_Cmd(USART1 , ENABLE);//打开串口
USART_ClearFlag(USART1 , USART_FLAG_TC);//解决第一个数据发送失败的问题
}