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

31 lines
682 B
Makefile

include ../Makefile.tests_common
FEATURES_REQUIRED = periph_gpio
FEATURES_OPTIONAL = periph_gpio_irq
FEATURES_OPTIONAL += periph_gpio_fast_read
USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += benchmark
BOARDS_BENCH_PORT_1 = \
slstk3402a \
z1 \
#
# port 0 pins are used for serial output on these boards, e.g.: on slstk3402a
# PA5 (or port 0, pin 5) is used to control the BC enabling serial output,
# therefore test on port 1.
ifneq (,$(filter $(BOARD),$(BOARDS_BENCH_PORT_1)))
PORT_UNDER_TEST ?= 1
else
PORT_UNDER_TEST ?= 0
endif
include $(RIOTBASE)/Makefile.include
$(call target-export-variables,test,PORT_UNDER_TEST)
bench:
tests/02-bench.py