mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
28 lines
917 B
C
28 lines
917 B
C
#include "namespoof.h"
|
|
#include <furi_hal.h>
|
|
#include <flipper_format/flipper_format.h>
|
|
|
|
#define TAG "NameSpoof"
|
|
|
|
void NAMESPOOF_INIT() {
|
|
FuriString* str = furi_string_alloc();
|
|
Storage* storage = furi_record_open(RECORD_STORAGE);
|
|
FlipperFormat* file = flipper_format_file_alloc(storage);
|
|
|
|
do {
|
|
uint32_t version;
|
|
if(!flipper_format_file_open_existing(file, NAMESPOOF_PATH)) break;
|
|
if(!flipper_format_read_header(file, str, &version)) break;
|
|
if(furi_string_cmp_str(str, NAMESPOOF_HEADER)) break;
|
|
if(version != NAMESPOOF_VERSION) break;
|
|
|
|
if(!flipper_format_read_string(file, "Name", str)) break;
|
|
version_set_custom_name(NULL, strdup(furi_string_get_cstr(str)));
|
|
furi_hal_version_set_name(version_get_custom_name(NULL));
|
|
} while(false);
|
|
|
|
flipper_format_free(file);
|
|
furi_record_close(RECORD_STORAGE);
|
|
furi_string_free(str);
|
|
}
|