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

24 lines
468 B
Makefile

BOARD ?= mcb2388
include ../Makefile.drivers_common
BLOBS += hello.raw
USEMODULE += dac_dds
USEMODULE += shell
LOW_MEMORY_BOARDS := samd10-xmini
# Disable the greeting sample if the board has too little memory
# or flashing takes too long
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