aboutsummaryrefslogtreecommitdiff
path: root/extmod/vfs_fat.c
AgeCommit message (Expand)Author
2022-05-03all: Use mp_obj_malloc everywhere it's applicable.Jim Mussared
2021-07-12all: Update to point to files in new shared/ directory.Damien George
2021-05-06extmod: Remove old comments used for auto-doc generation.Damien George
2020-09-18all: Rename absolute time-based functions to include "epoch".Damien George
2020-09-01extmod/vfs: Add option to use 1970 as Epoch.Damien George
2020-09-01extmod/vfs: Support larger integer range in VFS stat time fields.Damien George
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2019-10-29extmod/vfs: Rename BP_IOCTL_xxx constants to MP_BLOCKDEV_IOCTL_xxx.Damien George
2019-10-29extmod/vfs_blockdev: Factor out block device interface code.Damien George
2019-10-29extmod: Factor out block-device struct to make independent of fatfs.Damien George
2019-03-26extmod/vfs_fat: Fallback to FAT32 if standard FAT16/SFD format fails.Andrew Leech
2019-03-05extmod/vfs_fat: Update for new oofatfs version.Damien George
2018-06-06extmod/vfs: Introduce a C-level VFS protocol, with fast import_stat.Damien George
2018-03-12extmod/vfs_fat: Add file size as 4th element of uos.ilistdir tuple.Tom Collins
2018-02-23extmod/vfs_fat: Make fat_vfs_open_obj wrapper public, not its function.Damien George
2018-02-23extmod/vfs_fat: Merge remaining vfs_fat_misc.c code into vfs_fat.c.Damien George
2018-02-23extmod/vfs_fat: Move ilistdir implementation from misc to main file.Damien George
2017-11-20extmod/vfs_fat: Mount FatFS on creation so VFS methods can be used.Damien George
2017-11-16py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-08-21extmod,unix: For uos.stat interpret st_size member as an unsigned int.Damien George
2017-05-10extmod/vfs: Use MP_S_IFDIR, MP_S_IFREG consts instead of magic numbers.Damien George
2017-05-10extmod/vfs_fat: Replace listdir() with implementation of ilistdir().Damien George
2017-03-29extmod/vfs_fat: Fix calculation of total blocks in statvfs.Damien George
2017-03-10extmod/vfs_fat: Remove obsolete and unused str/len members.Damien George
2017-01-30extmod/vfs_fat.c: Use explicit include path for timeutils.h.Andrew Gatt
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-27extmod/vfs_fat: Use SECSIZE macro to determine FatFs sector size.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: Implement POSIX behaviour of rename, allow to overwrite.Damien George
2016-10-11extmod/vfs_fat: Add file and directory checks for remove and rmdir.Alex March
2016-10-07extmod/vfs_fat: Use mp_raise_OSError helper function.Damien George
2016-09-27extmod/vfs_fat: Add fat_vfs_statvfs(), reused from stmhal.Alex March
2016-08-26esp8266/modous: Add os.umount method to unmount a filesystem.Radomir Dopieralski
2016-07-16extmod/vfs_fat: Implement rmdir() method.Paul Sokolovsky
2016-06-16esp8266: Use RTC to set date & time stamps for files.Robert HH
2016-05-31extmod/vfs_fat: Mark anused "self" arg for fat_vfs_stat().Paul Sokolovsky
2016-05-31extmod/vfs_fat.c: Add vfs.stat().Robert HH
2016-05-29extmod/vfs_fat: getcwd(): Use mp_obj_new_exception_arg1().Paul Sokolovsky
2016-05-29extmod/vfs_fat: chdir(), getcwd() methods should accept VFS object (self).Paul Sokolovsky
2016-05-29extmod/vfs_fat: Add getcwd() method.Paul Sokolovsky
2016-05-29extmod/vfs_fat: Add chdir() method.Paul Sokolovsky
2016-05-27extmod/vfs_fat*: Replace text error messages by POSIX error numbers.Robert HH
2016-05-20extmod: When including extmod headers, prefix path with extmod/.Damien George
2016-02-29extmod/vfs_fat: Add .rename() method.Paul Sokolovsky
2016-02-29extmod/vfs_fat: Add .mkdir() method.Paul Sokolovsky
2016-02-28extmod/vfs_fat: Fix unused param warning/error.Paul Sokolovsky