1# SPDX-License-Identifier: Apache-2.0 2 3CONFIG_SYS_CLOCK_HW_CYCLES_PER_SEC=125000000 4 5# Enable UART driver 6CONFIG_SERIAL=y 7CONFIG_UART_INTERRUPT_DRIVEN=y 8 9# Enable console 10CONFIG_CONSOLE=y 11CONFIG_UART_CONSOLE=y 12 13# Enable reset by default 14CONFIG_RESET=y 15 16# Enable clock control by default 17CONFIG_CLOCK_CONTROL=y 18 19# Code partition needed to target the correct flash range 20CONFIG_USE_DT_CODE_PARTITION=y 21 22# Output UF2 by default, native bootloader supports it. 23CONFIG_BUILD_OUTPUT_UF2=y 24