summaryrefslogtreecommitdiff
path: root/extmod/vfs_fat_file.c
AgeCommit message (Expand)Author
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-12-27py: Introduce MP_ROM_NONE macro for ROM to refer to None object.Damien George
2019-08-20extmod: Give vars/funcs unique names so STATIC can be set to nothing.Damien George
2018-06-06extmod/vfs_fat: Rename FileIO/TextIO types to mp_type_vfs_fat_XXX.Damien George
2018-04-10py/stream: Switch stream close operation from method to ioctl.Damien George
2018-02-23extmod/vfs_fat: Make fat_vfs_open_obj wrapper public, not its function.Damien George
2018-01-31extmod/vfs_fat_file: Implement SEEK_CUR for non-zero offset.Ayke van Laethem
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-24all: Don't include system errno.h when it's not needed.Damien George
2017-03-13extmod/vfs_fat: Allow to compile with MICROPY_VFS_FAT disabled.Damien George
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-01-30extmod/vfs_fat: Remove unused fatfs_builtin_open function.Damien George
2017-01-30extmod: Merge old fsusermount.h header into vfs.h and vfs_fat.h.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_FATFS_OO config option.Damien George
2017-01-30extmod: Remove MICROPY_FSUSERMOUNT and related files.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_FSUSERMOUNT_ADHOC config option.Damien George
2017-01-27extmod/vfs_fat: Rework to support new generic VFS sub-system.Damien George
2017-01-27extmod: Rename vfs_fat_file.h to vfs_fat.h.Damien George
2017-01-27extmod/vfs_fat: Rework so it can optionally use OO version of FatFS.Damien George
2016-12-02extmod/vfs_fat_file: Allow file obj to respond to ioctl flush request.w4kpm
2016-11-14all: Remove readall() method, which is equivalent to read() w/o args.Paul Sokolovsky
2016-10-24extmod/vfs_fat_file: Make file.close() a no-op if file already closed.Damien George
2016-10-19extmod/vfs_fat_file: Check fatfs f_sync() and f_close() returns for errors.Alex March
2016-10-07extmod/vfs_fat_file: Use MP_Exxx errno constants.Damien George
2016-10-07extmod/vfs_fat: Use mp_raise_OSError helper function.Damien George
2016-06-18all: Rename mp_obj_type_t::stream_p to protocol.Paul Sokolovsky
2016-03-14py: When printf'ing an object as a pointer, pass the concrete pointer.Damien George
2016-02-15cc3200: Fix breakage after VfsFat refactor.Paul Sokolovsky
2016-02-15extmod/vfs_fat_file: Reusable FatFs module, move from stmhal/file.Paul Sokolovsky