1# EFR32 radio board 2 3# Copyright (c) 2020 Piotr Mienkowski 4# Copyright (c) 2020 TriaGnoSys GmbH 5# SPDX-License-Identifier: Apache-2.0 6 7if BOARD_SLWRB4180A 8 9config CMU_HFXO_FREQ 10 default 38400000 11 12config CMU_LFXO_FREQ 13 default 32768 14 15config FLASH_BASE_ADDRESS 16 hex 17 default 0x0 18 19config LOG_BACKEND_SWO_FREQ_HZ 20 default 875000 21 depends on LOG_BACKEND_SWO 22 23if SOC_GECKO_USE_RAIL 24 25config FPU 26 default y 27 28endif # SOC_GECKO_USE_RAIL 29 30if BT 31 32config FPU 33 default y 34 35config COMMON_LIBC_MALLOC_ARENA_SIZE 36 default 8192 37 38config MAIN_STACK_SIZE 39 default 3072 if PM 40 default 2304 41 42endif # BT 43 44endif # BOARD_SLWRB4180A 45