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 a103e2f commit a29ccd2Copy full SHA for a29ccd2
port/mpy_main.c
@@ -186,6 +186,12 @@ int DEBUG_printf(const char *format, ...)
186
return 0;
187
}
188
189
+#ifndef MICROPYTHON_USING_UOS
190
+mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
191
+ mp_raise_OSError(MP_ENOENT);
192
+}
193
+#endif
194
+
195
#if defined(RT_USING_FINSH) && defined(FINSH_USING_MSH)
196
#include <finsh.h>
197
static void python(uint8_t argc, char **argv) {
0 commit comments