File tree 3 files changed +9
-0
lines changed
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/).
7
7
8
8
## [ Unreleased]
9
9
### Added
10
+ - C++ definitions of ` ARDUINO_CI_COMPILATION_MOCKS ` and ` ARDUINO_CI_GODMODE ` to aid in compilation macros
10
11
11
12
### Changed
12
13
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ Mock Arduino.h library.
5
5
Where possible, variable names from the Arduino library are used to avoid conflicts
6
6
7
7
*/
8
+
9
+ // signal to the developer that we are in an arduino_ci mocked environment
10
+ #define ARDUINO_CI_COMPILATION_MOCKS
11
+
12
+
8
13
// Chars and strings
9
14
10
15
#include "ArduinoDefines.h"
Original file line number Diff line number Diff line change 6
6
#include " WString.h"
7
7
#include " PinHistory.h"
8
8
9
+ // signal to the developer that we are in an arduino_ci mocked environment
10
+ #define ARDUINO_CI_GODMODE
11
+
9
12
// random
10
13
void randomSeed (unsigned long seed);
11
14
long random (long vmax);
You can’t perform that action at this time.
0 commit comments