index
:
suspect-devices/circuitpython
1.x
2.x
3.x
4.0.x
4.1.x
4.x
5.0.x
5.1.x
5.3.x
6.0.x
6.1.x
6.2.x
audiocore-rawsample-sinewave
azure
azure-pipelines
cross
dm-mixer
dynamic-native-modules
encoding
esp-extra-scripts
fix_typo_spanish
iabdalkader-cc3k-update
jepler-try-ubuntu-20.04
main
master
parse-bytecode
reentrant-gc
stable
travis-clang
travis-esp8266
travis-stackless
travis-testing
type_hints
CircuitPython - a Python implementation for teaching coding with microcontrollers
feurig
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
extmod
/
vfs_fat_file.c
Age
Commit message (
Expand
)
Author
2021-03-15
run code formatting script
microDev
2020-08-04
various: Use mp_obj_get_type_qstr more widely
Jeff Epler
2020-07-06
Add license to some obvious files.
Diego Elio Pettenò
2020-02-04
preserve errno in OSError
Dan Halbert
2020-02-04
Include filename for 'No such file/directory', etc.
Dan Halbert
2019-12-04
protocols: Allow them to be (optionally) type-safe
Jeff Epler
2019-02-21
Add option to disable the concurrent write protection
Scott Shawcroft
2019-02-19
Prevent infinite display update recursion and fix VFS mounting
Scott Shawcroft
2019-02-04
Fix allocation size
Scott Shawcroft
2019-02-03
Add fast seek support to file objects
Scott Shawcroft
2019-01-14
py changes for supporting superclass constructors that take kwargs
Scott Shawcroft
2018-07-13
compiles and runs; hangs on import storage;storage.VfsFat.<tab>
Dan Halbert
2018-07-11
WIP: after merge; before testing
Dan Halbert
2018-06-06
extmod/vfs_fat: Rename FileIO/TextIO types to mp_type_vfs_fat_XXX.
Damien George
2018-04-10
py/stream: Switch stream close operation from method to ioctl.
Damien George
2018-03-23
extmod/vfs_fat_file: Implement SEEK_CUR for non-zero offset.
Ayke van Laethem
2018-02-23
extmod/vfs_fat: Make fat_vfs_open_obj wrapper public, not its function.
Damien George
2018-01-31
extmod/vfs_fat_file: Implement SEEK_CUR for non-zero offset.
Ayke van Laethem
2017-10-24
Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_merge
Scott Shawcroft
2017-10-04
all: Remove inclusion of internal py header files.
Damien George
2017-08-25
Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...
Dan Halbert
2017-07-31
all: Use the name MicroPython consistently in comments
Alexander Steffen
2017-07-24
all: Don't include system errno.h when it's not needed.
Damien George
2017-06-20
Merge tag 'v1.9.1'
2.0.0-alpha.0
Scott Shawcroft
2017-05-01
atmel-samd: Introduce audio sample playback via audioio.AudioOut.
Scott Shawcroft
2017-03-13
extmod/vfs_fat: Allow to compile with MICROPY_VFS_FAT disabled.
Damien George
2017-02-16
py: Add iter_buf to getiter type method.
Damien George
2017-01-30
extmod/vfs_fat: Remove unused fatfs_builtin_open function.
Damien George
2017-01-30
extmod: Merge old fsusermount.h header into vfs.h and vfs_fat.h.
Damien George
2017-01-30
extmod/vfs_fat: Remove MICROPY_FATFS_OO config option.
Damien George
2017-01-30
extmod: Remove MICROPY_FSUSERMOUNT and related files.
Damien George
2017-01-30
extmod/vfs_fat: Remove MICROPY_FSUSERMOUNT_ADHOC config option.
Damien George
2017-01-27
extmod/vfs_fat: Rework to support new generic VFS sub-system.
Damien George
2017-01-27
extmod: Rename vfs_fat_file.h to vfs_fat.h.
Damien George
2017-01-27
extmod/vfs_fat: Rework so it can optionally use OO version of FatFS.
Damien George
2016-12-02
extmod/vfs_fat_file: Allow file obj to respond to ioctl flush request.
w4kpm
2016-11-14
all: Remove readall() method, which is equivalent to read() w/o args.
Paul Sokolovsky
2016-10-24
extmod/vfs_fat_file: Make file.close() a no-op if file already closed.
Damien George
2016-10-19
extmod/vfs_fat_file: Check fatfs f_sync() and f_close() returns for errors.
Alex March
2016-10-07
extmod/vfs_fat_file: Use MP_Exxx errno constants.
Damien George
2016-10-07
extmod/vfs_fat: Use mp_raise_OSError helper function.
Damien George
2016-06-18
all: Rename mp_obj_type_t::stream_p to protocol.
Paul Sokolovsky
2016-03-14
py: When printf'ing an object as a pointer, pass the concrete pointer.
Damien George
2016-02-15
cc3200: Fix breakage after VfsFat refactor.
Paul Sokolovsky
2016-02-15
extmod/vfs_fat_file: Reusable FatFs module, move from stmhal/file.
Paul Sokolovsky