mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-24 22:07:14 +03:00
ffa3996a5e
* clang-format: AllowShortEnumsOnASingleLine: false * clang-format: InsertNewlineAtEOF: true * clang-format: Standard: c++20 * clang-format: AlignConsecutiveBitFields * clang-format: AlignConsecutiveMacros * clang-format: RemoveParentheses: ReturnStatement * clang-format: RemoveSemicolon: true * Restored RemoveParentheses: Leave, retained general changes for it * formatting: fixed logging TAGs * Formatting update for dev Co-authored-by: あく <alleteam@gmail.com>
24 lines
671 B
C
24 lines
671 B
C
#include "bt_settings.h"
|
|
|
|
#include <furi.h>
|
|
#include <lib/toolbox/saved_struct.h>
|
|
#include <storage/storage.h>
|
|
|
|
#define BT_SETTINGS_PATH INT_PATH(BT_SETTINGS_FILE_NAME)
|
|
#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(const BtSettings* bt_settings) {
|
|
furi_assert(bt_settings);
|
|
|
|
return saved_struct_save(
|
|
BT_SETTINGS_PATH, bt_settings, sizeof(BtSettings), BT_SETTINGS_MAGIC, BT_SETTINGS_VERSION);
|
|
}
|