mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-15 04:19:26 -07:00
22 lines
308 B
C
22 lines
308 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define BT_SETTINGS_PATH CFG_PATH("bt.settings")
|
|
|
|
typedef struct {
|
|
bool enabled;
|
|
} BtSettings;
|
|
|
|
void bt_settings_load(BtSettings* bt_settings);
|
|
|
|
void bt_settings_save(const BtSettings* bt_settings);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|