当前位置: 首页 > 工具软件 > HSE > 使用案例 >

STM32 HAL HSE_VALUE

长孙高远
2023-12-01

stm32f4xx.h默认25M外部晶振(HSE):
而我们正常情况是接8M晶振,所以要做修改,否则将会出现串口乱码等奇怪问题

#if !defined  (HSE_VALUE) 
//  #define HSE_VALUE    (25000000U) /*!< Value of the External oscillator in Hz */
  #define HSE_VALUE    (8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */
 类似资料:

相关阅读

相关文章

相关问答