mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
21 lines
272 B
C
21 lines
272 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
bool enabled;
|
|
} BtSettings;
|
|
|
|
bool bt_settings_load(BtSettings* bt_settings);
|
|
|
|
bool bt_settings_save(BtSettings* bt_settings);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|