7c692a9f36
* bt keys: rework load and save with saved_struct * bt: rename bt keys storage functions * furi_hal_nfc: allow context switch during emilation * bt settings: rework with saved struct * infrared: replace file worker with dialogs and storage * Core, Loader: fix thread allocation tracking, much better, so wow. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
23 lines
618 B
C
23 lines
618 B
C
#include "bt_settings.h"
|
|
|
|
#include <furi.h>
|
|
#include <lib/toolbox/saved_struct.h>
|
|
|
|
#define BT_SETTINGS_PATH "/int/bt.settings"
|
|
#define BT_SETTINGS_VERSION (0)
|
|
#define BT_SETTINGS_MAGIC (0x19)
|
|
|
|
bool bt_settings_load(BtSettings* bt_settings) {
|
|
furi_assert(bt_settings);
|
|
|
|
return saved_struct_load(
|
|
BT_SETTINGS_PATH, bt_settings, sizeof(BtSettings), BT_SETTINGS_MAGIC, BT_SETTINGS_VERSION);
|
|
}
|
|
|
|
bool bt_settings_save(BtSettings* bt_settings) {
|
|
furi_assert(bt_settings);
|
|
|
|
return saved_struct_save(
|
|
BT_SETTINGS_PATH, bt_settings, sizeof(BtSettings), BT_SETTINGS_MAGIC, BT_SETTINGS_VERSION);
|
|
}
|