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

35 lines
782 B
Makefile
Raw Normal View History

include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6
2014-10-01 17:24:27 +02:00
FEATURES_REQUIRED = periph_gpio
2015-11-03 15:27:25 +01:00
USEMODULE += pir
USEMODULE += xtimer
# define parameters for selected boards
ifneq (,$(filter stm32f4discovery,$(BOARD)))
PIR_PARAM_GPIO ?= GPIO_PIN\(3,7\)
PIR_PARAM_ACTIVE_HIGH ?= 1
endif
ifneq (,$(filter arduino-due,$(BOARD)))
PIR_PARAM_GPIO ?= GPIO_PIN\(0,20\)
PIR_PARAM_ACTIVE_HIGH ?= 1
endif
2015-11-03 15:27:25 +01:00
# set default device parameters in case they are undefined
PIR_PARAM_GPIO ?= GPIO_PIN\(0,0\)
PIR_PARAM_ACTIVE_HIGH ?= 1
2015-11-03 15:27:25 +01:00
# export parameters
CFLAGS += -DPIR_PARAM_GPIO=$(PIR_PARAM_GPIO)
CFLAGS += -DPIR_PARAM_ACTIVE_HIGH=$(PIR_PARAM_ACTIVE_HIGH)
include $(RIOTBASE)/Makefile.include
all-polling: CFLAGS += -DTEST_PIR_POLLING
all-polling: all
all-interrupt: all