pxt-common-packages 12.3.4 → 12.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/libs/base/pxtbase.h +4 -0
- package/package.json +1 -1
package/libs/base/pxtbase.h
CHANGED
|
@@ -1166,9 +1166,13 @@ bool removeElement(RefCollection *c, TValue x);
|
|
|
1166
1166
|
#define FLASH_TOP 0x00000000
|
|
1167
1167
|
#else
|
|
1168
1168
|
#if MICROBIT_CODAL
|
|
1169
|
+
#if MICROBIT_TOP_OF_FLASH
|
|
1169
1170
|
#define FLASH_TOP MICROBIT_TOP_OF_FLASH
|
|
1170
1171
|
#else
|
|
1171
1172
|
#define FLASH_TOP 0x00000000
|
|
1173
|
+
#endif
|
|
1174
|
+
#else
|
|
1175
|
+
#define FLASH_TOP 0x00000000
|
|
1172
1176
|
#endif
|
|
1173
1177
|
#endif
|
|
1174
1178
|
|