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