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: 1a98668acd66df2a4e5773bc18bef3fd7e91002b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);