STM32串口乱码
Posted 赤色
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STM32串口乱码相关的知识,希望对你有一定的参考价值。
库函数默认8MHz晶振,应根据实际硬件选择
# CMSIS/stm32f10x.h
#define HSE_VALUE ((uint32_t)12000000)
#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 */
以上是关于STM32串口乱码的主要内容,如果未能解决你的问题,请参考以下文章