Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bt_settings.h « bt « applications - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 260d9c0e0f47c5fa3d2a002a43f9752932449b64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "bt_settings_filename.h"

#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);