mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
359 B
Makefile
15 lines
359 B
Makefile
APPLICATION = timer_periodic_wakeup
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
BOARD ?= native
|
|
USEMODULE += xtimer
|
|
QUIET ?= 1
|
|
|
|
# Comment this out to disable code in RIOT that does safety checking
|
|
# which is not needed in a production environment but helps in the
|
|
# development process:
|
|
DEVELHELP ?= 1
|
|
|
|
FEATURES_REQUIRED += periph_timer
|
|
|
|
include $(RIOTBASE)/Makefile.include
|