spiffs_storage.h 203 B

123456789
  1. #pragma once
  2. #include "esp_err.h"
  3. /**
  4. * Mount the SPIFFS "storage" partition at /spiffs.
  5. * Safe to call multiple times — returns ESP_OK if already mounted.
  6. */
  7. esp_err_t spiffs_storage_init(void);