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

sys/event/periodic: remove wrong event_timeout_dependency

This commit is contained in:
Francisco Molina 2022-02-23 09:37:50 +01:00
parent b4a70fc29c
commit dff92b59b5
2 changed files with 0 additions and 5 deletions

View File

@ -543,10 +543,6 @@ ifneq (,$(filter event_timeout,$(USEMODULE)))
USEMODULE += ztimer_usec
endif
ifneq (,$(filter event_periodic,$(USEMODULE)))
USEMODULE += event_timeout_ztimer
endif
ifneq (,$(filter event,$(USEMODULE)))
USEMODULE += core_thread_flags
endif

View File

@ -20,7 +20,6 @@ if MODULE_EVENT
config MODULE_EVENT_PERIODIC
bool "Provides functionality to trigger periodic events"
depends on MODULE_EVENT_TIMEOUT_ZTIMER
config MODULE_EVENT_CALLBACK
bool "Support for callback-with-argument event type"