在设置usart2的时候为什么会失败,有程序贴

2019-07-21 00:28发布

如题。如果我去掉设置G口的引脚的话串口3就不能正常[mw_shl_code=applescript,true]void uart3_init(u32 bound){
          
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;
       
        RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB,ENABLE);
        RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3,ENABLE);
       
        GPIO_PinAFConfig(GPIOB,GPIO_PinSource11,GPIO_AF_USART3);
        GPIO_PinAFConfig(GPIOB,GPIO_PinSource10,GPIO_AF_USART3);
       
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;       
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
        GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOG, &GPIO_InitStructure);
       

       
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
        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(GPIOB, &GPIO_InitStructure);
       

         GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
         GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
    GPIO_Init(GPIOB, &GPIO_InitStructure);   
   

       
       
   //USART2 ?????                                                                                                                                        4 ?? ???
        USART_InitStructure.USART_BaudRate = bound;//?????
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;//???8?????
        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(USART3, &USART_InitStructure); //?????2
       
        USART_Cmd(USART3, ENABLE);  //????2                                                     6 ????
       
        USART_ClearFlag(USART3, USART_FLAG_TC);
       

        USART_ITConfig(USART3, USART_IT_RXNE, ENABLE);//??????         ???????                                                5 ???? ???? NVIC

        //Usart2 NVIC ??
        NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn;//??1????
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3;//?????3
        NVIC_InitStructure.NVIC_IRQChannelSubPriority =3;                //????3
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;                        //IRQ????
        NVIC_Init(&NVIC_InitStructure);        //??????????VIC????
}[/mw_shl_code]通讯,串口2也是这样的,我想问一下是为什么,如有知道请不吝赐教,谢谢啦

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
10条回答
zhangcaiwang
1楼-- · 2019-07-21 20:48
小温 发表于 2015-12-28 21:56
完全不知道你想问什么

就是我这一段代码初始了一个GPIOG引脚,两个GPIOB,且两个GPIOB用来作为中断输入输出。如果把初始化G口引脚的那几句话去掉的话,中断就不能实现。上面的代码是可以实现功能的。
zhangcaiwang
2楼-- · 2019-07-21 23:59
 精彩回答 2  元偷偷看……
正点原子
3楼-- · 2019-07-22 03:40
探索者,就有串口2的例子啊,485实验,用的就是串口2,参考下吧.
zhangcaiwang
4楼-- · 2019-07-22 06:56
山峰雪狼 发表于 2015-12-30 16:30
LZ的问题解决了吗,下面是我的代码,测试过的:
//串口3初始化
void UART3_Init()

没有解决,就原来的那段程序还在用,等下试试你的,谢谢啦

一周热门 更多>