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

29 lines
545 B
Makefile
Raw Normal View History

APPLICATION = driver_mq3
include ../Makefile.tests_common
FEATURES_REQUIRED = periph_adc
# Define default pin mappings for some boards:
ifneq (,$(filter stm32f4discovery,$(BOARD)))
export MQ3_ADC ?= ADC_1
export MQ3_CHAN ?= 0
endif
USEMODULE += mq3
USEMODULE += vtimer
ifneq (,$(MQ3_ADC))
CFLAGS += -DMQ3_ADC=$(MQ3_ADC)
else
# set random default
CFLAGS += -DMQ3_ADC=ADC_0
endif
ifneq (,$(MQ3_CHAN))
CFLAGS += -DMQ3_CHAN=$(MQ3_CHAN)
else
# set random default
CFLAGS += -DMQ3_CHAN=0
endif
include $(RIOTBASE)/Makefile.include