stm32f103vet6同时开了串口1和串口2但是串口2进不去中断

2019-07-21 01:35发布

串口2接了红外解码模块,想用遥控器给红外解码模块发信息然后由串口1发到电脑上,但电脑上不显示接受,应该是串口2中断没进,不知道那错了



oid USART1_Initialise(void)
{
        //GPIO端口设置
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
        NVIC_InitTypeDef NVIC_InitStructure;

        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1|RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO, ENABLE);
        //USART1_TX   PA.9
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_Init(GPIOA, &GPIO_InitStructure);

        //USART1_RX      PA.10
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
        GPIO_Init(GPIOA, &GPIO_InitStructure);  

        //Usart1 NVIC 配置

        NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority=3 ;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 3;        //

        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;            //IRQ通道使能
        NVIC_Init(&NVIC_InitStructure);    //根据NVIC_InitStruct中指定的参数初始化外设NVIC寄存器USART1

        //USART 初始化设置

        USART_InitStructure.USART_BaudRate = 115200;//一般设置为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(USART1, &USART_InitStructure);


        USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);//开启中断

        USART_Cmd(USART1, ENABLE);                    //使能串口

}
void USART2_Initialise( void )
{
    GPIO_InitTypeDef GPIO_InitStructure;
    NVIC_InitTypeDef NVIC_InitStructure;
    USART_InitTypeDef USART_InitStructure;

    /* Enable the USART2 Pins Software Remapping */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA|RCC_APB2Periph_AFIO, ENABLE);
    RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART2|RCC_APB2Periph_AFIO, ENABLE);

    /* Configure USART2 Rx (PA.03) as input floating */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3;   
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
    GPIO_Init(GPIOA, &GPIO_InitStructure);

    /* Configure USART2 Tx (PA.02) as alternate function push-pull */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_2;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_Init(GPIOA, &GPIO_InitStructure);

    /* Enable the USART2 Interrupt */
    NVIC_InitStructure.NVIC_IRQChannel = USART2_IRQn;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 2;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 2;
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&NVIC_InitStructure);   

    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(USART2, &USART_InitStructure);
    USART_ITConfig(USART2, USART_IT_RXNE, ENABLE);
    /* Enable USART2 */
    USART_Cmd(USART2, ENABLE);
}

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
22条回答
604723254
1楼-- · 2019-07-22 09:31
mexico007 发表于 2018-5-25 08:07
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
我的意思是这条语句你应该放在
GPIO_InitStructure ...

不用啊,TX是推挽输出才有速度,RX是浮空输入不用速度啊
604723254
2楼-- · 2019-07-22 10:35
 精彩回答 2  元偷偷看……
xyl210xyl
3楼-- · 2019-07-22 16:19
我擦,你中断里面发个毛数据啊 。。。
604723254
4楼-- · 2019-07-22 20:20
xyl210xyl 发表于 2018-5-26 08:48
我擦,你中断里面发个毛数据啊 。。。

不在中断里发在哪发啊
lanlzp
5楼-- · 2019-07-23 00:13
 精彩回答 2  元偷偷看……
阿侑kevin
6楼-- · 2019-07-23 03:20
本帖最后由 阿侑kevin 于 2018-5-28 09:59 编辑

看你的代码,应该是进了串口2中断,但是第一次处理完了没清中断标志,这个你在KEIL或是IAR 的寄存器里可以看到,串口2中断一直挂起导致无法再次进入串口2 中断,12楼已经给你更正了这个问题其次,说一下串口发送的问题,我发现很多人在用串口库做发送,个人在几年的工作中发现其实是有一点小小的问题的,比如我们发一个长数组,大家都会用for循环发送,然后主程序一直在死等,这样是不合理的,在工业应用中一般都是采用发送中断或是发送完成中断去实现,这个可以百度到很多
再者,个人觉得中断中只去置标志或是处理非常紧急的任务,大多数操作还是在main中通过状态机进行更合理一点

一周热门 更多>