STM32F103ZET6的UART2能接收到数据,不能发送数据!

2019-07-21 01:24发布

把战舰开发板上的USART1串口改成USART2通信,结果能正确收到数据却不能发送数据。
usart2初始化如下:
[mw_shl_code=c,true]void uart2_init(u32 bound){ GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure; NVIC_InitTypeDef NVIC_InitStructure; /* config USART2 clock */ RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE); RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2, ENABLE); USART_DeInit(USART2); //USART2_TX PA.2 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2; //PA.9 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP; GPIO_Init(GPIOA, &GPIO_InitStructure); //USART2_RX PA.3 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3; GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;//???????? GPIO_Init(GPIOA, &GPIO_InitStructure); //??????PA10 //Usart1 NVIC ???? NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn; NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=2 ; NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3; NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE; NVIC_Init(&NVIC_InitStructure); //USART ???????è?? USART_InitStructure.USART_BaudRate = bound; 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); USART_ITConfig(USART2, USART_IT_RXNE, ENABLE); USART_Cmd(USART2, ENABLE); }[/mw_shl_code] MAIN函数代码如下
[mw_shl_code=c,true]int main(void) { u16 times; u8 t,len; delay_init(); //???±?????????? uart2_init(9600); TIM3_Int_Init(9,7199); LED_Init(); //LED?????????? Usart_SendChar(USART2,'b'); while(1) { if((USART_RX_STA>0)&(tt>3)) { len=USART_RX_STA&0x3fff;//?????????????????????¤?? printf(" ?ú·???????????:"); for(t=0;t<len;t++) { Usart_SendChar(USART2,USART_RX_BUF[t]); } printf(" ");//???????? USART_RX_STA=0; } else { times++; if(times%500==0) { Usart_SendChar(USART2,'a'); //printf("AT+CIPMUX=0 "); } if(times%30==0)LED0=!LED0;//????LED,?á??????????????. delay_ms(10); } } }[/mw_shl_code] 工程帮忙在附件,请各位大神帮忙


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
11条回答
安宁和平
1楼-- · 2019-07-22 07:16
 精彩回答 2  元偷偷看……
fanleung
2楼-- · 2019-07-22 08:19
 精彩回答 2  元偷偷看……
qqdqoyo
3楼-- · 2019-07-22 12:50
新手很容易出现的问题:
TIM2和USART2冲突,只要分别开了时钟就冲突,而不是像原子说的只要管脚不冲突就不冲突
一般的现象就是USART2无法发送,可以接收

修改的办法:
1.USART2重定义,而不要直接用复用功能
2.不用TIM2
laoshuhengheng
4楼-- · 2019-07-22 14:48
本帖最后由 laoshuhengheng 于 2017-4-2 15:19 编辑

我传一个串口2能用的程序吧,是直接在战舰版串口程序上改的,
Antoner
5楼-- · 2019-07-22 14:56
我的也有这样的问题

一周热门 更多>