在设置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也是这样的,我想问一下是为什么,如有知道请不吝赐教,谢谢啦

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。