From 033807008a4324c1eea8cdf540920c687d3ea160 Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Fri, 10 Jul 2020 16:31:09 +0200 Subject: [PATCH] sys/arduino: Require feature cpp Arduino code requires C++ support --- sys/Makefile.dep | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/Makefile.dep b/sys/Makefile.dep index fa7be4a572..3f7681c776 100644 --- a/sys/Makefile.dep +++ b/sys/Makefile.dep @@ -2,6 +2,7 @@ ifneq (,$(filter arduino,$(USEMODULE))) FEATURES_OPTIONAL += periph_i2c FEATURES_OPTIONAL += periph_spi FEATURES_REQUIRED += periph_uart + FEATURES_REQUIRED += cpp SKETCH_MODULE ?= arduino_sketches USEMODULE += $(SKETCH_MODULE) endif