野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 12911|回复: 4

STM32串口问题 求助

[复制链接]
发表于 2015-11-11 16:48:00 | 显示全部楼层 |阅读模式
问题如下:串口1不能接收数据,示波器测量PA10用io口拉不低(无论设置输入模式是什么),并且外接下拉1k电阻也拉不低,头痛几天了,代码如下:void USART1_Config(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        USART_InitTypeDef USART_InitStructure;
       
        /* config USART1 clock */
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
       
        /* USART1 GPIO config */
        /* Configure USART1 Tx (PA.09) as alternate function push-pull */
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStructure);  
          
        /* Configure USART1 Rx (PA.10) as input floating */
        GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
        GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPD;//GPIO_Mode_IN_FLOATING;          GPIO_Mode_IPU
        GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
        GPIO_Init(GPIOA, &GPIO_InitStructure);
       
        /* USART1 mode config */
        USART_InitStructure.USART_BaudRate = 115200;
        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);
       
        /* 使能串口1接收中断 */  //
        USART_ITConfig(USART1, USART_IT_RXNE, ENABLE);
       
        USART_Cmd(USART1, ENABLE);
}


/// 配置USART1接收中断
void NVIC_Configuration(void)
{
        NVIC_InitTypeDef NVIC_InitStructure;
        /* Configure the NVIC Preemption Priority Bits */  
        NVIC_PriorityGroupConfig(NVIC_PriorityGroup_0);
       
        /* Enable the USARTy Interrupt */
        NVIC_InitStructure.NVIC_IRQChannel = USART1_IRQn;         
        NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
        NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
        NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
        NVIC_Init(&NVIC_InitStructure);
}



回复

使用道具 举报

发表于 2015-11-11 16:49:22 | 显示全部楼层
先用我们的例程来测试,排除硬件问题
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-11-11 16:58:06 | 显示全部楼层
硬件没问题,我用usb转串口可以收发,但是外设的串口不行,自发自收也不行,示波器观察,发送没问题,就是接受拉不低,甚至用三极管驱动都拉不低。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2015-11-12 11:09:39 | 显示全部楼层
flyleaf 发表于 2015-11-11 16:49
先用我们的例程来测试,排除硬件问题

火哥,我现在全部是用例程调试串口,在MINI板上调试,用同样的方法测试串口1,2,3。
串口2和3完全没有问题,就是串口1接收脚io口接收不到外设的数据,用示波器看io口状态,一直是高电平,pa10设置成悬空,上拉下拉都试过了。实际上外设数据已经发出,因为只要把线头从MINI板PA10一拔出,sscom就能正常显示接收数据。
回复 支持 反对

使用道具 举报

发表于 2015-11-12 15:18:24 | 显示全部楼层
涨了 发表于 2015-11-12 11:09
火哥,我现在全部是用例程调试串口,在MINI板上调试,用同样的方法测试串口1,2,3。
串口2和3完全没有问 ...

可能是因为串口引脚已经连接到板上的 USB转串口芯片影响了

把引脚与芯片连接的跳线帽拔掉试试
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-23 14:54 , Processed in 0.042364 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表