mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-11 07:12:09 +03:00
15 lines
238 B
C
15 lines
238 B
C
#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);
|