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>
13 lines
203 B
C
13 lines
203 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
typedef struct {
|
|
bool enabled;
|
|
} BtSettings;
|
|
|
|
bool bt_settings_load(BtSettings* bt_settings);
|
|
|
|
bool bt_settings_save(BtSettings* bt_settings);
|