1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #18610 from miri64/event_periodic_callback/fix/dep

event_periodic_callback: remove unnecessary dependency
This commit is contained in:
Marian Buschsieweke 2022-09-20 12:15:58 +02:00 committed by GitHub
commit 3f8f6e929d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 2 deletions

View File

@ -528,7 +528,6 @@ endif
ifneq (,$(filter event_periodic_callback,$(USEMODULE)))
USEMODULE += event_callback
USEMODULE += event_periodic
USEMODULE += event_thread
endif
ifneq (,$(filter emcute,$(USEMODULE)))

View File

@ -27,7 +27,6 @@
#include "event/callback.h"
#include "event/periodic.h"
#include "event/thread.h"
#ifdef __cplusplus
extern "C" {

View File

@ -1,6 +1,7 @@
include ../Makefile.tests_common
USEMODULE += event_periodic_callback
USEMODULE += event_thread
USEMODULE += ztimer_msec
include $(RIOTBASE)/Makefile.include

View File

@ -21,6 +21,7 @@
#include <stdio.h>
#include "event/periodic_callback.h"
#include "event/thread.h"
static void _event_cb(void *ctx)
{