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

24 lines
466 B
Makefile
Raw Normal View History

BOARD ?= mcb2388
include ../Makefile.tests_common
BLOBS += hello.raw
USEMODULE += dac_dds
USEMODULE += shell
2020-10-28 00:32:09 +01:00
LOW_MEMORY_BOARDS := samd10-xmini
# Disable the greeting sample if the board has too little memory
# or flashing takes too long
2020-10-28 00:32:09 +01:00
ifneq (,$(filter $(BOARD),$(LOW_MEMORY_BOARDS)))
ENABLE_GREETING ?= 0
CFLAGS += -DDAC_BUF_SIZE=1024
else
ENABLE_GREETING ?= 1
endif
CFLAGS += -DENABLE_GREETING=$(ENABLE_GREETING)
include $(RIOTBASE)/Makefile.include