8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1be9f5 commit ed34c35Copy full SHA for ed34c35
atmel-samd/mpconfigport.h
@@ -78,6 +78,8 @@
78
#define MICROPY_PY_SYS_STDFILES (1)
79
#define MICROPY_PY_IO_FILEIO (1)
80
#define MICROPY_PY_MICROPYTHON_MEM_INFO (1)
81
+#define MICROPY_PERSISTENT_CODE_LOAD (1)
82
+#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
83
84
// type definitions for the specific machine
85
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(__thumb__)
429
// fatfs file reader (assume thumb2 arch uses fatfs...)
430
431
#include "lib/fatfs/ff.h"
0 commit comments