 4768177cf5
			
		
	
	
		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
		
			
				
	
	
		
			40 lines
		
	
	
		
			702 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			702 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "bt.h"
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <furi-hal.h>
 | |
| 
 | |
| #include <gui/gui.h>
 | |
| #include <gui/view_port.h>
 | |
| #include <gui/view.h>
 | |
| 
 | |
| #include <applications/dialogs/dialogs.h>
 | |
| 
 | |
| #include "../bt_settings.h"
 | |
| 
 | |
| typedef enum {
 | |
|     BtMessageTypeUpdateStatusbar,
 | |
|     BtMessageTypeUpdateBatteryLevel,
 | |
|     BtMessageTypePinCodeShow,
 | |
| } BtMessageType;
 | |
| 
 | |
| typedef union {
 | |
|     uint32_t pin_code;
 | |
|     uint8_t battery_level;
 | |
| } BtMessageData;
 | |
| 
 | |
| typedef struct {
 | |
|     BtMessageType type;
 | |
|     BtMessageData data;
 | |
| } BtMessage;
 | |
| 
 | |
| struct Bt {
 | |
|     BtSettings bt_settings;
 | |
|     osMessageQueueId_t message_queue;
 | |
|     Gui* gui;
 | |
|     ViewPort* statusbar_view_port;
 | |
|     DialogsApp* dialogs;
 | |
|     DialogMessage* dialog_message;
 | |
| };
 |