STM32F407串口总是乱码

2019-07-20 22:34发布

有谁弄成功的吗?我试了串口1没反应,串口2,3都是乱码,只显示一个  “帱”   字,不解,STM32F103都正常,说明软件设置什么的没有问题,硬件也没有问题


void USART2_Init(void) {   GPIO_InitTypeDef GPIO_InitStructure; USART_InitTypeDef USART_InitStructure;   /* Enable GPIO clock */   RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);
  /* Enable UART clock */   RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3,ENABLE);
  /* Connect PXx to USARTx_Tx*/   GPIO_PinAFConfig(GPIOC,GPIO_PinSource10,GPIO_AF_USART3);
  /* Connect PXx to USARTx_Rx*/   GPIO_PinAFConfig(GPIOC,GPIO_PinSource11,GPIO_AF_USART3);
  /* Configure USART Tx as alternate function  */   GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;   GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;   GPIO_Init(GPIOC, &GPIO_InitStructure);
  /* Configure USART Rx as alternate function  */   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;   GPIO_Init(GPIOC, &GPIO_InitStructure); /* USART configuration */ USART_InitStructure.USART_BaudRate = 2400;   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);     /* Enable USART */   USART_Cmd(USART3, ENABLE); }










友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
26条回答
正点原子
1楼-- · 2019-07-21 03:32
波特率设置错了吧.
1,KEIL软件仿真,看看波特率是多少.
2,设置上位机软件为对应的波特率.
shihantu
2楼-- · 2019-07-21 04:57
 精彩回答 2  元偷偷看……
btvnlue
3楼-- · 2019-07-21 06:51
你输出的数据是什么
leavic
4楼-- · 2019-07-21 08:00
system clock可能都是错的,看一下你system init那部分的PLL配置
subo19920716
5楼-- · 2019-07-21 12:44
回复【2楼】正点原子:
---------------------------------
波特率没有设置错,首先都是115200,后来我又芯片配置和软件设置同时降低到9600,再同时降低到2400,都是一样的情况
subo19920716
6楼-- · 2019-07-21 15:32
回复【4楼】btvnlue:
---------------------------------
输出数据为printf("串口通信 ");  但是显示出来的就是一个字 “帱” ,慢吞吞的显示

一周热门 更多>