Skip to content

Commit

Permalink
Update diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
oyama authored Jun 12, 2024
1 parent 6250c1e commit 8ade63f
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ Designed specifically for the Raspberry Pi Pico, `pico-vfs` is a virtual file sy
## Modular Design Architecture

```
+----------------------------+
| Application Code |
+----------------------------+
| POSIX File API |
+----------------------------+
| File System Layer |
+----------------------------+
| Block Device Layer |
+----------------------------+
| Physical Storage Media |
| (Flash, SD card, Heap) |
+----------------------------+
+---------------------------------+
| Application Code |
+---------------------------------+
| Virtual File System | <<< POSIX File API Layer
+---------------------------------+
| littlefs | FAT | <<< File System Layer
+---------------------------------+
| Flash Memory | SD Card | <<< Block Device Layer
+---------------------------------+
| Physical Storage Media |
| (Flash, SD card, Heap) |
+---------------------------------+
```

pico-vfs employs an architecture designed to achieve efficient and flexible data management:
pico-vfs employs an architecture designed to achieve efficient and flexible data management. The combination of file systems and block devices is not restricted, allowing for free reconfiguration:

- **Block Device Layer**: Abstracts differences in physical storage media such as SD cards and flash memory into a consistent interface, enabling developers to easily add or replace storage media.
- **File System Layer**: Integrates different file systems such as littlefs and FAT seamlessly, providing transparent data access to applications.
Expand Down

0 comments on commit 8ade63f

Please sign in to comment.