STM32F407 VGT6 芯片 USART2串口通信代码求教

2019-08-23 14:56发布

请教各位朋友,以下代码是我仿照原子的探索者STM32F407板子USART1代码写的USART2代码,但是不能正常通信,po出代码,请教各位网友哪里出了问题?
void uart_init(u32 bound)
{
       GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
       
        RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA,ENABLE);
        RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2,ENABLE);


        GPIO_PinAFConfig(GPIOA,GPIO_PinSource2,GPIO_AF_USART2);
        GPIO_PinAFConfig(GPIOA,GPIO_PinSource3,GPIO_AF_USART2);

        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2 | GPIO_Pin_3;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;       
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
        GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
        GPIO_Init(GPIOA,&GPIO_InitStructure); /

        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_Cmd(USART2, ENABLE);
}


友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
9条回答
godsend
1楼-- · 2019-08-23 15:39
pritnf 重定向代码呢?
mc1930
2楼-- · 2019-08-23 20:01
在线等
mc1930
3楼-- · 2019-08-23 21:18
补充:USART2只用于发送
godsend
4楼-- · 2019-08-24 00:40
怎么个不能通信法?你交代清楚。。。。。
mc1930
5楼-- · 2019-08-24 04:55
 精彩回答 2  元偷偷看……
mc1930
6楼-- · 2019-08-24 08:04
godsend 发表于 2016-1-22 18:37
pritnf 重定向代码呢?

printf重定向,是指之前指定给USART1输出的,移植过后,需要重定向给USART2代码吗?
我没有注意这一点,是直接调用的。原子的例程好像也没有提到过这个。

一周热门 更多>