We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a26ad1f commit 53ffab0Copy full SHA for 53ffab0
2 files changed
GD32F1/cores/maple/libmaple/rcc_f1.c
@@ -131,7 +131,7 @@ void rcc_configure_pll(rcc_pll_cfg *pll_cfg) {
131
132
cfgr = RCC_BASE->CFGR;
133
cfgr &= ~(RCC_CFGR_PLLSRC | RCC_CFGR_PLLMUL);
134
- cfgr |= pll_cfg->pllsrc | pll_mul;
+ cfgr |= pll_cfg->pllsrc | pll_mul;// | (0B10 << 22);
135
RCC_BASE->CFGR = cfgr;
136
}
137
GD32F1/variants/generic_gd32f103c/wirish/boards_setup.cpp
@@ -49,6 +49,7 @@
49
// currently officially supports).
50
#ifndef BOARD_RCC_PLLMUL
51
#define BOARD_RCC_PLLMUL RCC_PLLMUL_10
52
+//#define BOARD_RCC_PLLMUL RCC_PLLMUL_6
53
#endif
54
55
namespace wirish {
0 commit comments