mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
319 B
Makefile
17 lines
319 B
Makefile
|
BOARD ?= nucleo-f767zi
|
||
|
include ../Makefile.tests_common
|
||
|
|
||
|
FEATURES_REQUIRED += periph_ptp
|
||
|
FEATURES_OPTIONAL += periph_ptp_speed_adjustment
|
||
|
FEATURES_REQUIRED += periph_timer_periodic
|
||
|
|
||
|
USEMODULE += fmt
|
||
|
|
||
|
TIMER_FREQ ?=
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.include
|
||
|
|
||
|
ifneq (,$(TIMER_FREQ))
|
||
|
CFLAGS += -DTIM_FREQ=$(TIMER_FREQ)
|
||
|
endif
|