From 2d958fa3406c86391533b99fad9c5766e321e82d Mon Sep 17 00:00:00 2001 From: Jeremy Boynes Date: Thu, 14 Sep 2023 07:39:22 +0100 Subject: [PATCH] Document that C++11 is required --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 16367ce5..f1a2d3f8 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,8 @@ In order to compile a core which is implementing ArduinoCore-API you'll need to tar --exclude='*.git*' -cjhvf $yourcore-$version.tar.bz2 $yourcore/ ``` +The API is coded to the C++11 standard and the core's compiler must be able to support that version of the language. + Documentation for how to integrate with a Arduino core (which is necessary if you do not download the Arduino core via the Boards Manager) can be found here: * [ArduinoCore-megaavr](https://github.com/arduino/ArduinoCore-megaavr#developing) * [ArduinoCore-mbed](https://github.com/arduino/ArduinoCore-mbed#clone-the-repository-in-sketchbookhardwarearduino-git)