1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 23:11:19 +01:00

Merge pull request #14991 from leandrolanzieri/pr/cpu/native/fix_rtc_dependency

cpu/native: pull xtimer when RTC is used
This commit is contained in:
benpicco 2020-09-09 17:43:49 +02:00 committed by GitHub
commit 7bd933f1ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,7 +16,8 @@ endif
ifeq (,$(filter stdio_%,$(USEMODULE)))
USEMODULE += stdio_native
endif
ifeq (,$(filter periph_rtc,$(USEMODULE)))
ifneq (,$(filter periph_rtc,$(USEMODULE)))
USEMODULE += xtimer
endif