1# Copyright (c) 2020 Piotr Mienkowski
2# Copyright (c) 2020 TriaGnoSys GmbH
3# SPDX-License-Identifier: Apache-2.0
4
5if BOARD_SLWRB4180A
6
7config LOG_BACKEND_SWO_FREQ_HZ
8	default 875000
9	depends on LOG_BACKEND_SWO
10
11if SOC_GECKO_USE_RAIL
12
13config FPU
14	default y
15
16endif # SOC_GECKO_USE_RAIL
17
18if BT
19
20config FPU
21	default y
22
23config COMMON_LIBC_MALLOC_ARENA_SIZE
24	default 8192
25
26config MAIN_STACK_SIZE
27	default 3072 if PM
28	default 2304
29
30endif # BT
31
32endif # BOARD_SLWRB4180A
33