mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
4768177cf5
* bt: add authentication for all characteristics * bt: app_ble cleanup * bt: add start and stop advertising API * bt: rework application with start and stop advertising API * bt: support f7 target * bt: f7 target remove unused files * bt: stop advertising in bt debug application * bt: fix bt status bar update * bt: change bluetooth On Off order
22 lines
498 B
C
Executable file
22 lines
498 B
C
Executable file
#pragma once
|
|
|
|
#include <furi.h>
|
|
#include <gui/gui.h>
|
|
#include <gui/view.h>
|
|
#include <gui/view_dispatcher.h>
|
|
#include <gui/scene_manager.h>
|
|
|
|
#include <gui/modules/variable-item-list.h>
|
|
|
|
#include "../bt_settings.h"
|
|
#include "scenes/bt_settings_scene.h"
|
|
|
|
typedef struct {
|
|
BtSettings settings;
|
|
Gui* gui;
|
|
SceneManager* scene_manager;
|
|
ViewDispatcher* view_dispatcher;
|
|
VariableItemList* var_item_list;
|
|
} BtSettingsApp;
|
|
|
|
typedef enum { BtSettingsAppViewVarItemList } BtSettingsAppView;
|