File tree Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Expand file tree Collapse file tree 3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77
88## [ Unreleased]
99### Added
10+ - C++ definitions of ` ARDUINO_CI_COMPILATION_MOCKS ` and ` ARDUINO_CI_GODMODE ` to aid in compilation macros
1011
1112### Changed
1213
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ Mock Arduino.h library.
55Where possible, variable names from the Arduino library are used to avoid conflicts
66
77*/
8+
9+ // signal to the developer that we are in an arduino_ci mocked environment
10+ #define ARDUINO_CI_COMPILATION_MOCKS
11+
12+
813// Chars and strings
914
1015#include "ArduinoDefines.h"
Original file line number Diff line number Diff line change 66#include " WString.h"
77#include " PinHistory.h"
88
9+ // signal to the developer that we are in an arduino_ci mocked environment
10+ #define ARDUINO_CI_GODMODE
11+
912// random
1013void randomSeed (unsigned long seed);
1114long random (long vmax);
You can’t perform that action at this time.
0 commit comments