mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-17 10:22:01 +03:00
13 lines
203 B
C
13 lines
203 B
C
|
#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);
|