mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
600acb756c
For sam0 there is a conflict between rtt and rtc, make resolves this based on feature conflicts and the feature to be included depends on dependency resolution. Kconfig can't rely on order of inclusion therefore ztimer_no_periph_rtt is implied to aboid ztimer_msec selecting rtt (its the case for BOARDs using stdio_rtt
16 lines
423 B
Plaintext
16 lines
423 B
Plaintext
# Copyright (c) 2020 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
config APPLICATION
|
|
bool
|
|
default y
|
|
imply MODULE_PERIPH_RTC
|
|
imply MODULE_PERIPH_GPIO
|
|
imply MODULE_PERIPH_GPIO_IRQ
|
|
imply MODULE_ZTIMER_NO_PERIPH_RTT if CPU_COMMON_SAM0
|
|
depends on TEST_KCONFIG
|