* 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
		
			
				
	
	
		
			23 lines
		
	
	
		
			498 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 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;
 |