From 0fe6b074f3f3994d87af195f37e349a83e27882c Mon Sep 17 00:00:00 2001 From: QuakeGod <QuakeGod@sina.com> Date: 星期六, 10 十二月 2022 16:55:40 +0800 Subject: [PATCH] FP0 fix utf8 char --- Src/system_stm32f0xx.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Src/system_stm32f0xx.c b/Src/system_stm32f0xx.c index 36b4652..d49af9f 100644 --- a/Src/system_stm32f0xx.c +++ b/Src/system_stm32f0xx.c @@ -97,7 +97,7 @@ * @{ */ #if !defined (HSE_VALUE) - #define HSE_VALUE ((uint32_t)8000000) /*!< Default value of the External oscillator in Hz. + #define HSE_VALUE ((uint32_t)12000000) /*!< Default value of the External oscillator in Hz. This value can be provided and adapted by the user application. */ #endif /* HSE_VALUE */ @@ -133,7 +133,7 @@ call the 2 first functions listed above, since SystemCoreClock variable is updated automatically. */ -uint32_t SystemCoreClock = 8000000; +uint32_t SystemCoreClock = 12000000; const uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9}; const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4}; -- Gitblit v1.9.1