mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 07:28:38 +08:00
9b52710691
Add an option to use HSE on the Nucleo-H563ZI with board modification. This is enabled through board Kconfig. It supplies the same PLL output frequencies using the HSE instead of HSI, for significantly more precise clocks.
19 lines
478 B
Text
19 lines
478 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_NUCLEO_H563ZI
|
|
|
|
config STM32H5_USE_HSE
|
|
bool "Use on-board HSE"
|
|
default n
|
|
---help---
|
|
Use the supplied on-board 25 MHz HSE. If selected, board.h must supply
|
|
appropriate clock setup. Requires board modification:
|
|
- SB3 and SB4 ON
|
|
- SB49 OFF
|
|
- SB48 and SB50 OFF (Default)
|
|
- C69 and C70 ON, 5.6 pF (Default)
|
|
|
|
endif
|