You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
562 B
34 lines
562 B
# Copyright (c) 2020 Piotr Mienkowski |
|
# Copyright (c) 2020 TriaGnoSys GmbH |
|
# Copyright (c) 2025 Pete Johanson |
|
# Copyright (c) 2025 Silicon Laboratories Inc. |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
if BOARD_ARDUINO_NANO_MATTER |
|
|
|
config LOG_BACKEND_SWO_FREQ_HZ |
|
default 875000 |
|
depends on LOG_BACKEND_SWO |
|
|
|
if SOC_GECKO_USE_RAIL |
|
|
|
config FPU |
|
default y |
|
|
|
endif # SOC_GECKO_USE_RAIL |
|
|
|
if BT |
|
|
|
config FPU |
|
default y |
|
|
|
config COMMON_LIBC_MALLOC_ARENA_SIZE |
|
default 8192 |
|
|
|
config MAIN_STACK_SIZE |
|
default 3072 if PM |
|
default 2304 |
|
|
|
endif # BT |
|
|
|
endif # BOARD_ARDUINO_NANO_MATTER
|
|
|