1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 12:51:22 +04:00
Files
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);