我是靠谱客的博主 帅气萝莉,最近开发中收集的这篇文章主要介绍STM32 usart 问题笔记,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1、USART 手册上给的基础配置源码有误,应该为:

  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_Tx | USART_Mode_Rx; 
  USART_ClockInitStructure.USART_Clock = USART_Clock_Disable;  
  USART_ClockInitStructure.USART_CPOL = USART_CPOL_High;  
  USART_ClockInitStructure.USART_CPHA = USART_CPHA_1Edge;  
  USART_ClockInitStructure.USART_LastBit = USART_LastBit_Disable;  


  USART_Init(USART1, &USART_InitStructure); 
  USART_ClockInit(USART1 , &USART_ClockInitStructure); 
2、error: #268: declaration may not appear after executablestatement 解决方法:

变量声明必须放在主函数的最前面位置,不可以放在执行语句之后。

 USART_InitTypeDef USART_InitStructure; 
 USART_ClockInitTypeDef USART_ClockInitStructure;//必须放在主函数的最前面。

3、千万不要忘记配置RCC和GPIO的函数库,否则程序会一直卡在while检测的那句话。

void RCC_Configuration(void)
{


	RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);	 
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO, ENABLE);	
	RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1, ENABLE);	
}
void GPIO_Configuration(void)
{
  GPIO_InitTypeDef GPIO_InitStructure;

  /* Configure PC.06, PC.07, PC.08 and PC.09 as Output push-pull */
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; 
  GPIO_Init(GPIOA, &GPIO_InitStructure);
}


最后

以上就是帅气萝莉为你收集整理的STM32 usart 问题笔记的全部内容,希望文章能够帮你解决STM32 usart 问题笔记所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部