storage_ext.h 361 B

12345678910111213141516
  1. #pragma once
  2. #include <furi.h>
  3. #include "../storage_glue.h"
  4. #include "../storage_sd_api.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. void storage_ext_init(StorageData* storage);
  9. FS_Error sd_unmount_card(StorageData* storage);
  10. FS_Error sd_format_card(StorageData* storage);
  11. FS_Error sd_card_info(StorageData* storage, SDInfo* sd_info);
  12. #ifdef __cplusplus
  13. }
  14. #endif