我写了个代码来使用串口2来输出字符,但是怎么都输出不出来,查不到原因,来论坛上来问,大神们看有什么问题?
串口2初始化代码:
[mw_shl_code=c,true]void USART2_Init_Config(u32 bound)
{
GPIO_InitTypeDef GPIO_InitStructure;
USART_InitTypeDef USART_InitStructure;
NVIC_InitTypeDef NVIC_InitStructure;
/*使能USART2外设时钟*/
RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
/*复位串口2*/
USART_DeInit(USART2);
/*USART2_GPIO初始化设置*/
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; //USART2_TXD(PA.2)
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; //复用推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //设置引脚输出最大速率为50MHz
GPIO_Init(GPIOA, &GPIO_InitStructure); //调用库函数中的GPIO初始化函数,初始化USART1_TXD(PA.9)
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; //USART2_RXD(PA.3)
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; //浮空输入
GPIO_Init(GPIOA, &GPIO_InitStructure); //调用库函数中的GPIO初始化函数,初始化USART1_RXD(PA.10)
/*USART2 初始化设置*/
USART_InitStructure.USART_BaudRate = bound; //设置波特率
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(USART2, &USART_InitStructure); //初始化串口2
/*Usart1 NVIC配置*/
NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=1; //抢占优先级3
NVIC_InitStructure.NVIC_IRQChannelSubPriority = 2; //从优先级3
NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; //IRQ通道使能
NVIC_Init(&NVIC_InitStructure); //根据指定的参数初始化VIC寄存器
USART_ITConfig(USART2, USART_IT_RXNE, ENABLE); //使能串口2接收中断
USART_Cmd(USART2, ENABLE); //使能串口
USART_ClearFlag(USART2, USART_FLAG_TC); //清除发送完成标志
}[/mw_shl_code]
串口2打印字符的代码:
[mw_shl_code=c,true]void usart2SendStr(u8 *s, u16 length)
{
while(length)//检测字符串结束符
{
USART_SendData(USART2 ,*s++);//发送当前字符
while(USART_GetFlagStatus(USART2, USART_FLAG_TC)==RESET);
length--;
}
}[/mw_shl_code]
main函数就是循环打印:
[mw_shl_code=c,true]int main(void)
{
SystemInit();
SysTickInit(); //延时函数初始化
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //设置NVIC中断分组2:2位抢占优先级,2位响应优先级
USART2_Init_Config(19200);
printf("Hello!
");
while(1)
{
usart2SendStr(textbuff,4);
printf("
");
delay_s(3);
}
}[/mw_shl_code]
硬件链接,电脑端口显示如图,我用串口1输出没有问题,串口2输出就有问题。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
看下它这里P485红框把串口2连到了485上,你把跳线帽拔掉插到下面的232上再试试,应该就可以了。
一周热门 更多>