1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/pkg_arduino_sdi_12/Makefile
J. David Ibáñez 3e73c5f6e3 pkg/arduino_sdi_12: support the remote-revb board
Patch the library to use micros() for timing, when sending a command,
for boards not supported by the library.

Use cpp11-compat with the remote-revb board. This fixes the link error
"undefined reference to __dso_handle"
2021-11-04 16:05:06 +01:00

16 lines
256 B
Makefile

include ../Makefile.tests_common
ifneq (,$(filter remote-revb,$(BOARD)))
USEMODULE += cpp11-compat
endif
USEPKG += arduino_sdi_12
BOARD_WHITELIST := \
arduino-leonardo \
arduino-mega2560 \
remote-revb \
#
include $(RIOTBASE)/Makefile.include