feat(fsdrv) add driver based on Win32 API (#2701)

This commit is contained in:
Kenji Mouri
2021-10-20 17:35:11 +08:00
committed by GitHub
parent 91a0d3b5e4
commit bbad478ce6
7 changed files with 475 additions and 1 deletions

View File

@@ -11,8 +11,9 @@ LVG has build in support for
- [FATFS](http://elm-chan.org/fsw/ff/00index_e.html)
- STDIO (Linux and Windows using C standard function .e.g fopen, fread)
- POSIX (Linux and Windows using POSIX function .e.g open, read)
- WIN32 (Windows using Win32 API function .e.g CreateFileA, ReadFile)
You still need to provide the drivers and libraries, this extensions provide only the bridge between FATFS, STDIO, POSIX and LVGL.
You still need to provide the drivers and libraries, this extensions provide only the bridge between FATFS, STDIO, POSIX, WIN32 and LVGL.
## Usage