e3c7201a20
* Furi: rename and move core * Furi: drop CMSIS_OS header and unused api, partially refactor and cleanup the rest * Furi: CMSIS_OS drop and refactoring. * Furi: refactoring, remove cmsis legacy * Furi: fix incorrect assert on queue deallocation, cleanup timer * Furi: improve delay api, get rid of floats * hal: dropped furi_hal_crc * Furi: move DWT based delay to cortex HAL * Furi: update core documentation Co-authored-by: hedger <hedger@nanode.su>
23 lines
829 B
C
23 lines
829 B
C
#include <core/record.h>
|
|
#include <m-string.h>
|
|
#include "storage.h"
|
|
#include <toolbox/tar/tar_archive.h>
|
|
|
|
#define INT_PATH "/int"
|
|
|
|
FS_Error storage_int_backup(Storage* api, const char* dstname) {
|
|
TarArchive* archive = tar_archive_alloc(api);
|
|
bool success = tar_archive_open(archive, dstname, TAR_OPEN_MODE_WRITE) &&
|
|
tar_archive_add_dir(archive, INT_PATH, "") && tar_archive_finalize(archive);
|
|
tar_archive_free(archive);
|
|
return success ? FSE_OK : FSE_INTERNAL;
|
|
}
|
|
|
|
FS_Error storage_int_restore(Storage* api, const char* srcname) {
|
|
TarArchive* archive = tar_archive_alloc(api);
|
|
bool success = tar_archive_open(archive, srcname, TAR_OPEN_MODE_READ) &&
|
|
tar_archive_unpack_to(archive, INT_PATH);
|
|
tar_archive_free(archive);
|
|
return success ? FSE_OK : FSE_INTERNAL;
|
|
}
|