Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

24 linhas
590 B

  1. /*
  2. * spiffs VFS public function
  3. *
  4. * Author: LoBo (loboris@gmail.com / https://github.com/loboris)
  5. *
  6. * Part of this code is copied from or inspired by LUA-RTOS_ESP32 project:
  7. *
  8. * https://github.com/whitecatboard/Lua-RTOS-ESP32
  9. * IBEROXARXA SERVICIOS INTEGRALES, S.L. & CSS IBÉRICA, S.L.
  10. * Jaume Olivé (jolive@iberoxarxa.com / jolive@whitecatboard.org)
  11. *
  12. */
  13. #define SPIFFS_BASE_PATH "/spiffs"
  14. int spiffs_is_registered;
  15. int spiffs_is_mounted;
  16. void vfs_spiffs_register();
  17. int spiffs_mount();
  18. int spiffs_unmount(int unreg);
  19. void spiffs_fs_stat(uint32_t *total, uint32_t *used);