1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/driver_soft_uart/Makefile
2020-07-14 23:04:36 +02:00

16 lines
287 B
Makefile

include ../Makefile.tests_common
USEMODULE += soft_uart
USEMODULE += soft_uart_modecfg
USEMODULE += shell
ifneq (,$(PIN_RX))
CFLAGS += "-DSOFT_UART_PARAM_RX=$(PIN_RX)"
endif
ifneq (,$(PIN_TX))
CFLAGS += "-DSOFT_UART_PARAM_TX=$(PIN_TX)"
endif
include $(RIOTBASE)/Makefile.include