It is a good practice to add a comment after #endif when the condition is not obvious. However, when the condition is well known, "Don't Repeat Yourself" rule applies and no comment should be added. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
13 lines
254 B
Text
13 lines
254 B
Text
# Copyright (c) 2024 GARDENA GmbH
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SOC_FAMILY_SILABS_S1
|
|
|
|
config SOC_FAMILY_SILABS_S1
|
|
select HAS_SEGGER_RTT if ZEPHYR_SEGGER_MODULE
|
|
select BUILD_OUTPUT_HEX
|
|
select SOC_EARLY_INIT_HOOK
|
|
|
|
rsource "*/Kconfig"
|
|
|
|
endif
|