File tree Expand file tree Collapse file tree 7 files changed +21
-5
lines changed Expand file tree Collapse file tree 7 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " Embedded Template Library - Arduino" ,
3- "version" : " 20.35.5 " ,
3+ "version" : " 20.35.6 " ,
44 "authors" : {
55 "name" : " John Wellbelove" ,
66
Original file line number Diff line number Diff line change 11name =Embedded Template Library - Arduino
2- version =20.35.5
2+ version =20.35.6
33author = John Wellbelove <
[email protected] >
44maintainer =John Wellbelove <
[email protected] >
55license =MIT
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ SOFTWARE.
3232 * The header include guard has been intentionally omitted.
3333 * This file is intended to evaluated multiple times by design.
3434 */
35- #if !defined(ETL_COMPILER_GREEN_HILLS ) && !defined(ETL_COMPILER_IAR )
35+ #if !defined(ETL_COMPILER_GREEN_HILLS ) && !defined(ETL_COMPILER_IAR ) && !defined( ETL_COMPILER_TASKING )
3636 #if !defined(ETL_COMPILER_ARM5 )
3737 #pragma pop_macro("min")
3838 #pragma pop_macro("max")
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ SOFTWARE.
3333 * This file is intended to evaluated multiple times by design.
3434 */
3535
36- #if !defined(ETL_COMPILER_GREEN_HILLS ) && !defined(ETL_COMPILER_IAR )
36+ #if !defined(ETL_COMPILER_GREEN_HILLS ) && !defined(ETL_COMPILER_IAR ) && !defined( ETL_COMPILER_TASKING )
3737 #if !defined(ETL_COMPILER_ARM5 )
3838 #pragma push_macro("min")
3939 #pragma push_macro("max")
Original file line number Diff line number Diff line change @@ -119,6 +119,13 @@ SOFTWARE.
119119 #endif
120120 #endif
121121
122+ #if !defined(ETL_COMPILER_TYPE_DETECTED ) && !defined(ETL_COMPILER_TASKING )
123+ #if defined(__TASKING__ )
124+ #define ETL_COMPILER_TASKING
125+ #define ETL_COMPILER_TYPE_DETECTED
126+ #endif
127+ #endif
128+
122129 #if !defined(ETL_COMPILER_TYPE_DETECTED )
123130 #define ETL_COMPILER_GENERIC
124131 #endif
@@ -187,6 +194,12 @@ SOFTWARE.
187194 #define ETL_USING_TEXAS_INSTRUMENTS_COMPILER 0
188195#endif
189196
197+ #if defined(ETL_COMPILER_TASKING )
198+ #define ETL_USING_TASKING_COMPILER 1
199+ #else
200+ #define ETL_USING_TASKING_COMPILER 0
201+ #endif
202+
190203#if defined(ETL_COMPILER_GENERIC )
191204 #define ETL_USING_GENERIC_COMPILER 1
192205#else
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ SOFTWARE.
6464 #elif defined(ETL_COMPILER_TEXAS_INSTRUMENTS )
6565 #define ETL_COMPILER_VERSION __TI_COMPILER_VERSION__
6666 #define ETL_COMPILER_FULL_VERSION __TI_COMPILER_VERSION__
67+ #elif defined(ETL_COMPILER_TASKING )
68+ #define ETL_COMPILER_VERSION __REVISION__
69+ #define ETL_COMPILER_FULL_VERSION __VERSION__
6770 #else
6871 #define ETL_COMPILER_VERSION 0
6972 #define ETL_COMPILER_FULL_VERSION 0
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ SOFTWARE.
4040
4141#define ETL_VERSION_MAJOR 20
4242#define ETL_VERSION_MINOR 35
43- #define ETL_VERSION_PATCH 5
43+ #define ETL_VERSION_PATCH 6
4444
4545#define ETL_VERSION ETL_STRING (ETL_VERSION_MAJOR) "." ETL_STRING(ETL_VERSION_MINOR) "." ETL_STRING(ETL_VERSION_PATCH)
4646#define ETL_VERSION_W ETL_WIDE_STRING (ETL_VERSION_MAJOR) L"." ETL_WIDE_STRING(ETL_VERSION_MINOR) L"." ETL_WIDE_STRING(ETL_VERSION_PATCH)
You can’t perform that action at this time.
0 commit comments