mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3e73c5f6e3
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"
16 lines
256 B
Makefile
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
|