1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #8722 from gebart/pr/kinetis-rtt-dep

kinetis: Add dependency on rtt for LPTMR time base
This commit is contained in:
Francisco Acosta 2018-03-02 12:01:55 +01:00 committed by GitHub
commit 54519903ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,8 @@
ifneq (,$(filter periph_rtc,$(USEMODULE)))
USEMODULE += periph_rtt
endif
ifneq (,$(filter periph_timer,$(USEMODULE)))
# RTT is used as the time base for the LPTMR driver.
# TODO: Remove when LPTMR is refactored.
FEATURES_OPTIONAL += periph_rtt
endif