1# EFR32XG24 DK2601B board 2 3# Copyright (c) 2021, Sateesh Kotapati 4# SPDX-License-Identifier: Apache-2.0 5 6if BOARD_XG24_DK2601B 7 8config CMU_HFXO_FREQ 9 default 40000000 10 11config CMU_LFXO_FREQ 12 default 32768 13 14config FLASH_BASE_ADDRESS 15 hex 16 default 0x08000000 17 18if SOC_GECKO_USE_RAIL 19 20config FPU 21 default y 22 23endif # SOC_GECKO_USE_RAIL 24 25if BT 26 27config FPU 28 default y 29 30config COMMON_LIBC_MALLOC_ARENA_SIZE 31 default 8192 32 33config MAIN_STACK_SIZE 34 default 2304 35 36if SHELL 37 38config SHELL_STACK_SIZE 39 default 4096 40 41endif # SHELL 42 43endif # BT 44 45endif # BOARD_XG24_DK2601B 46