flipperzero-firmware/applications/bt/bt_settings.h

15 lines
238 B
C
Raw Normal View History

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