你的浏览器版本过低,可能导致网站不能正常访问!
为了你能正常使用网站功能,请使用这些浏览器。

STM32L152串口接受不进中断问题

[复制链接]
oceane 提问时间:2018-3-31 10:56 /
悬赏5ST金币未解决
用STM32L152系列单片机串口3(PD8(TX)、PD9(RX))调试模块,串口助手可接受到返回数据,但去进不接受中断不知道哪里配置错了,还是什么原因,大神帮忙看一下。(使用的是STM32L1xx_StdPeriph_Lib_V1.3.1版本库函数)
void sim_usart3_init(void)    // USART3、中断服务配置
        {
          GPIO_InitTypeDef GPIO_InitStructure;
                USART_InitTypeDef USART_InitStructure;
                NVIC_InitTypeDef NVIC_InitStructure;
//                NVIC_SetVectorTable(NVIC_VectTab_FLASH,0x0);
                RCC_AHBPeriphClockCmd(RCC_AHBPeriph_GPIOD, ENABLE);       
                RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);
                       
                GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8;
                GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
                GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
                GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
                GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
                GPIO_Init(GPIOD, &GPIO_InitStructure);
                       
                GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
                GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
                GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
                GPIO_Init(GPIOD, &GPIO_InitStructure);
               
                GPIO_PinAFConfig(GPIOD,GPIO_PinSource8,GPIO_AF_USART3);
                GPIO_PinAFConfig(GPIOD,GPIO_PinSource9,GPIO_AF_USART3);

                NVIC_InitStructure.NVIC_IRQChannel = USART3_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(USART3, &USART_InitStructure);
                USART_ITConfig(USART3, USART_IT_RXNE, ENABLE);//¿ªÆô´®¿Ú½ÓÊÜÖжÏ
                USART_Cmd(USART3, ENABLE);  
        }
void USART3_IRQHandler(void)
        {
                u8 Resim = 0;
                if(USART_GetITStatus(USART3,USART_IT_RXNE) != RESET)
                {
                        USART_ClearITPendingBit(USART3,USART_IT_RXNE);
                        USART_RX_BUF3[Resim++] = USART_ReceiveData(USART3);
                }       
        }

收藏 评论3 发布时间:2018-3-31 10:56

举报

3个回答
回答时间:2018-3-31 11:12:35
P9也要和P9配置一样,用AF功能。

GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
                GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN;
                GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
                GPIO_Init(GPIOD, &GPIO_InitStructure);

评分

参与人数 1蝴蝶豆 +3 收起 理由
zero99 + 3

查看全部评分

bargagebaobei 回答时间:2018-3-31 13:29:21
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
GPIO_Init(GPIOD, &GPIO_InitStructure);

评分

参与人数 1蝴蝶豆 +2 收起 理由
zero99 + 2

查看全部评分

MrJiu 回答时间:2018-3-31 13:42:54
我觉得最重要的是,你先用示波器看一下。。。确认波形数据OK先,在去确认软件上的事情!!!

评分

参与人数 1蝴蝶豆 +2 收起 理由
zero99 + 2

查看全部评分

关于 意法半导体
我们是谁
投资者关系
意法半导体可持续发展举措
创新与技术
意法半导体官网
联系我们
联系ST分支机构
寻找销售人员和分销渠道
社区
媒体中心
活动与培训
隐私策略
隐私策略
Cookies管理
行使您的权利
官方最新发布
13245底部标题123相同标题
12底部标题123相同标题
33333底部标题123相同序号
3435底部标题-无链接
关注我们
st-img 微信公众号
st-img 手机版