Skip to content

Commit

Permalink
Merge branch 'main' of github.com:oyama/pico-vfs
Browse files Browse the repository at this point in the history
  • Loading branch information
oyama committed Jun 12, 2024
2 parents a3ad521 + 151d140 commit 849d3f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ int main(void) {
fclose(fp);
}
```
By default, 1.4MB of littlefs is mounted at /, and the Pico's onboard flash memory is used as a block device.
## Usage Guide
Expand All @@ -69,7 +70,7 @@ While there are several solutions that cover the problem of writing drivers for
Among multi-filesystem implementations, Memotech-Bill[^5] implementation provides standard I/O support for pico-sdk using the Newlib[^6] hook. The littlefs file system for on-board flash and FatFs for SD cards can be operated as an integrated file system. It is an ambitious project that goes beyond files and integrates character devices such as TTYs and UARTs.
While referring to these existing projects, _pico-vfs_ aims to make the implementation of drivers and file systems for block devices separate and interchangeable, similar to MicroPython's VFS[^7] and ARM Mbed OS's Storage[^8].
While referring to these existing projects, pico-vfs was developed with the aim of separating and making interchangeable the implementation of drivers and file systems for block devices. This provides functionality similar to that of MicroPython's VFS[^7]and ARM Mbed OS's Storage[^8].
## References
Expand Down

0 comments on commit 849d3f0

Please sign in to comment.