File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 7
7
* Added ` JsonVariant::operator| ` to return a default value (see bellow)
8
8
* Added a clear error message when compiled as C instead of C++ (issue #629 )
9
9
* Added detection of MPLAB XC compiler (issue #629 )
10
+ * Added detection of Keil ARM Compiler (issue #629 )
10
11
* Rewrote example ` JsonHttpClient.ino ` (issue #600 )
11
12
12
13
> ### How to use the new feature?
Original file line number Diff line number Diff line change 6
6
7
7
// Small or big machine?
8
8
#ifndef ARDUINOJSON_EMBEDDED_MODE
9
- #if defined(ARDUINO) || defined(__IAR_SYSTEMS_ICC__) || defined(__XC)
9
+ #if defined(ARDUINO) || defined(__IAR_SYSTEMS_ICC__) || defined(__XC) || \
10
+ defined (__ARMCC_VERSION)
10
11
#define ARDUINOJSON_EMBEDDED_MODE 1
11
12
#else
12
13
#define ARDUINOJSON_EMBEDDED_MODE 0
You can’t perform that action at this time.
0 commit comments