使用外部晶振 需要设置下宏定义, 默认官网的模版是 在预编译这里 加入 GD32E103V_EVAL 这里面有定义使用外部晶振。 你可以把官网的exzapmle 改到自己风格的工程里即可。 在gd32e10x.h 文件里 会有如下#if !defined HXTAL_VALUE
#ifdef GD32E103V_EVAL
#define HXTAL_VALUE ((uint32_t)8000000) /*!< value of the external oscillator in Hz */
#define HXTAL_VALUE_8M HXTAL_VALUE
#elif defined(GD32E103R_START)
#define HXTAL_VALUE ((uint32_t)25000000) /*!< value of the external oscillator in Hz */
#define HXTAL_VALUE_25M HXTAL_VALUE
#else
#error "Please select the target board type used in your application (in gd32e10x.h file)"
#endif
#endif /* high speed crystal oscillator value */