我在调试STM32F105时,串口发送数据一致乱码,找来找去,原来问题还是出现在软件配置上。
然后我发现在文件stm32f10x.h中有这么一段代码。
if !defined HSE_VALUE
#ifdef STM32F10X_CL
#define HSE_VALUE ((uint32_t)25000000) /!< Value of the External oscillator in Hz /
#else
#define HSE_VALUE ((uint32_t)8000000) /!< Value of the External oscillator in Hz /
#endif /* STM32F10X_CL */
endif /* HSE_VALUE */
HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator
这个是官网默认外部晶振25MHZ
然而我使用的外部晶振为8MHZ所以改成
ifdef STM32F10X_CL
#define HSE_VALUE ((uint32_t)8000000) /!< Value of the External oscillator in Hz /
#else
#define HSE_VALUE ((uint32_t)8000000) /!< Value of the External oscillator in Hz /
#endif /* STM32F10X_CL */
endif /* HSE_VALUE */
上一篇:在IAR平台stm32f105工程移植到stm32f103
下一篇:STM32F103官方初始化模板
推荐阅读最新更新时间:2024-03-16 16:10