We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11fc655 commit af8d791Copy full SHA for af8d791
2 files changed
esp8266/mpconfigport.h
@@ -9,6 +9,7 @@
9
#define MICROPY_ALLOC_PARSE_RULE_INC (8)
10
#define MICROPY_ALLOC_PARSE_RESULT_INC (8)
11
#define MICROPY_ALLOC_PARSE_CHUNK_INIT (64)
12
+#define MICROPY_PERSISTENT_CODE_LOAD (1)
13
#define MICROPY_EMIT_X64 (0)
14
#define MICROPY_EMIT_THUMB (0)
15
#define MICROPY_EMIT_INLINE_THUMB (0)
py/emitglue.c
@@ -425,7 +425,7 @@ mp_raw_code_t *mp_raw_code_load_file(const char *filename) {
425
return rc;
426
}
427
428
-#elif defined(__thumb2__)
+#elif defined(__thumb2__) || defined(__xtensa__)
429
// fatfs file reader (assume thumb2 arch uses fatfs...)
430
431
#include "lib/fatfs/ff.h"
0 commit comments