nuttx-mirror/boards/arm/stm32h5/nucleo-h563zi/Kconfig
stbenn 9b52710691 board/nucleo-h563zi: Add HSE option
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.
2024-12-03 09:39:13 +08:00

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