bt_settings.h 257 B

123456789101112131415
  1. #pragma once
  2. #include <stdint.h>
  3. #include <stdbool.h>
  4. #define BT_SETTINGS_VERSION (0)
  5. typedef struct {
  6. uint8_t version;
  7. bool enabled;
  8. } BtSettings;
  9. bool bt_settings_load(BtSettings* bt_settings);
  10. bool bt_settings_save(BtSettings* bt_settings);