各位大侠,我遇到一个奇怪的问题:我使用双串口,一路为PA9 PA10做串口1 另一路为PD5和PD6做串口2. 现在问题出来了,串口2的收发都没问题(中断方式),串口1只能发送,不能接收,示波器测PA10(Rx)一直显示低电平。 串口1配置代码如下: void UART1_Init(uint32_t baudrate,uint16_t wordlength,uint16_t parity,uint16_t flowcontrol) { GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure; /* Enable GPIO clock */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA | RCC_APB2Periph_AFIO, ENABLE); /* Enable UART clock */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE); /* Configure USART Tx as alternate function push-pull */ GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9; GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_Init(GPIOA, &GPIO_InitStructure); /* Configure USART Rx as input floating */ GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING; GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10; GPIO_Init(GPIOA, &GPIO_InitStructure); USART_InitStructure.USART_BaudRate = baudrate; /*设置波特率为115200*/ USART_InitStructure.USART_WordLength = wordlength;/*设置数据位为8*/ USART_InitStructure.USART_StopBits = USART_StopBits_1; /*设置停止位为1位*/ USART_InitStructure.USART_Parity = parity; /*无奇偶校验*/ USART_InitStructure.USART_HardwareFlowControl = flowcontrol;/*无硬件流控*/ USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx; /*发送和接收*/ USART_Init(USART1, &USART_InitStructure); /*配置串口1 */ USART_Cmd(USART1, ENABLE); /* 使能串口1 */ // USART_ITConfig(USART1, USART_IT_RXNE, ENABLE); } 网上查相关资料,有人说是printf函数惹的货....但是怎么解决啊???真心求教,望各位大侠不惜赐教。 |
RE:串口能够以中断方式发送,不能接收。
RE:串口能够以中断方式发送,不能接收。
RE:串口能够以中断方式发送,不能接收。
是不是把中断注释掉了?