简单的STM32串口3程序

2019-07-21 08:33发布

战舰版STM32F1V3程序
串口3初始化
void My_Uart3_Init(){
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;
        /* config USART3 clock */
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
               RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
              GPIO_PinRemapConfig(GPIO_PartialRemap_USART3,ENABLE);
               //GPIO_PinAFConfig();
        /* USART1 GPIO config */
        /* Configure USART3 Tx (PB.10) as alternate function push-pull */
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOB, &GPIO_InitStructure);   
        /* Configure USART3 Rx (PB.11) as input floating */
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
        GPIO_Init(GPIOB, &GPIO_InitStructure);
              /* USART3 mode config */
        USART_InitStructure.USART_BaudRate = 9600;
        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(USART3, &USART_InitStructure);
        USART_Cmd(USART3, ENABLE);                    

        USART_ITConfig(USART3, USART_IT_RXNE, ENABLE);


        NVIC_InitStructure.NVIC_IRQChannel = USART3_IRQn;
              NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3 ;
              NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3;               
              NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;                       
              NVIC_Init(&NVIC_InitStructure);       

}

中断程序
void USART3_IRQHandler(void){
        u16 res;
              if(USART_GetITStatus(USART3, USART_IT_RXNE)){
                                    res =USART_ReceiveData(USART3);
                                          USART_SendData(USART3,res);
                                }   
}

主函数
int main(void)
{       
         NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);
         My_Uart3_Init();
         while(1);
}

将PB10和PB11与U转TTL反接
结果如图所示

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
5条回答
seupenn
1楼-- · 2019-07-21 08:36
我用串口3,发送给上位机可以成功,但是反过来,从上位机发给stm32的却收不到。。。为什么??
明月123
2楼-- · 2019-07-21 10:55
seupenn 发表于 2018-10-27 19:47
我用串口3,发送给上位机可以成功,但是反过来,从上位机发给stm32的却收不到。。。为什么??

这原因就得自己找了,波特率、电平不匹配都有可能
peng1554
3楼-- · 2019-07-21 11:21
seupenn 发表于 2018-10-27 19:47
我用串口3,发送给上位机可以成功,但是反过来,从上位机发给stm32的却收不到。。。为什么??

这个我这边测试正常,你试试
seupenn
4楼-- · 2019-07-21 13:54
peng1554 发表于 2018-10-28 11:15
这个我这边测试正常,你试试

看起来好像没有什么区别。。。他们都说串口3的始终是36MHZ的APB1,初始化的时候有什么特别的处理吗?串口3?谢谢回复
peng1554
5楼-- · 2019-07-21 17:18
 精彩回答 2  元偷偷看……

一周热门 更多>