25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

24 satır
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);