Skip to content
Snippets Groups Projects
Commit da07e6e0 authored by q3k's avatar q3k
Browse files

micropython: disable PosixVfs stdio wrappers

This seem to break mpremote mount, and I'm not sure why we even want
them.
parent 2b007357
No related branches found
No related tags found
No related merge requests found
......@@ -249,8 +249,4 @@ MP_DEFINE_CONST_OBJ_TYPE(
locals_dict, &vfs_posix_rawfile_locals_dict
);
const mp_obj_vfs_posix_file_t mp_sys_stdin_obj = {{&mp_type_vfs_posix_textio}, STDIN_FILENO};
const mp_obj_vfs_posix_file_t mp_sys_stdout_obj = {{&mp_type_vfs_posix_textio}, STDOUT_FILENO};
const mp_obj_vfs_posix_file_t mp_sys_stderr_obj = {{&mp_type_vfs_posix_textio}, STDERR_FILENO};
#endif // MICROPY_VFS_POSIX
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment