mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge #19129
19129: boards/seeedstudio-gd32: fix HXTAL clock in Kconfig r=miri64 a=gschorcht ### Contribution description This PR fixes the wrong default value of `CLOCK_HXTAL` in Kconfig introduced with PR #19109. It was accidentally set to the default value of 80 MHz instead of 8 MHz. ### Testing procedure ``` python3 dist/tools/compile_test/compile_like_murdock.py -a tests/shell -b seeedstudio-gd32 -j8 ``` Without the PR the command gives: ``` tests/shell seeedstudio-gd32 FAIL: Kconfig hash mismatch ``` WIth the PR the compile test should pass: ``` tests/shell seeedstudio-gd32 PASS ``` ### Issues/PRs references Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
This commit is contained in:
commit
75c909b813
@ -28,4 +28,4 @@ config BOARD_HAS_LXTAL
|
||||
|
||||
config CLOCK_HXTAL
|
||||
int
|
||||
default 80000000
|
||||
default 8000000
|
||||
|
Loading…
Reference in New Issue
Block a user