43 lines
558 B
Plaintext
43 lines
558 B
Plaintext
# EFR32XG24 DK2601B board
|
|
|
|
# Copyright (c) 2021, Sateesh Kotapati
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if BOARD_EFR32XG24_DK2601B
|
|
|
|
config CMU_HFXO_FREQ
|
|
default 40000000
|
|
|
|
config CMU_LFXO_FREQ
|
|
default 32768
|
|
|
|
config FLASH_BASE_ADDRESS
|
|
hex
|
|
default 0x08000000
|
|
|
|
if SOC_GECKO_USE_RAIL
|
|
|
|
config FPU
|
|
default y
|
|
|
|
endif # SOC_GECKO_USE_RAIL
|
|
|
|
if BT
|
|
|
|
config FPU
|
|
default y
|
|
|
|
config MINIMAL_LIBC_MALLOC_ARENA_SIZE
|
|
default 8192
|
|
|
|
config MAIN_STACK_SIZE
|
|
default 2304
|
|
|
|
choice BT_HCI_BUS_TYPE
|
|
default BT_SILABS_HCI
|
|
endchoice
|
|
|
|
endif # BT
|
|
|
|
endif # BOARD_EFR32XG24_DK2601B
|