mirror of
https://github.com/Dejvino/lilybook.git
synced 2025-07-02 01:12:23 +00:00
24 lines
590 B
C
24 lines
590 B
C
/*
|
|
* spiffs VFS public function
|
|
*
|
|
* Author: LoBo (loboris@gmail.com / https://github.com/loboris)
|
|
*
|
|
* Part of this code is copied from or inspired by LUA-RTOS_ESP32 project:
|
|
*
|
|
* https://github.com/whitecatboard/Lua-RTOS-ESP32
|
|
* IBEROXARXA SERVICIOS INTEGRALES, S.L. & CSS IBÉRICA, S.L.
|
|
* Jaume Olivé (jolive@iberoxarxa.com / jolive@whitecatboard.org)
|
|
*
|
|
*/
|
|
|
|
#define SPIFFS_BASE_PATH "/spiffs"
|
|
|
|
|
|
int spiffs_is_registered;
|
|
int spiffs_is_mounted;
|
|
|
|
void vfs_spiffs_register();
|
|
int spiffs_mount();
|
|
int spiffs_unmount(int unreg);
|
|
void spiffs_fs_stat(uint32_t *total, uint32_t *used);
|