 389ff92cc1
			
		
	
	
		389ff92cc1
		
			
		
	
	
	
	
		
			
			* Makefile, Scripts: new linter * About: remove ID from IC * Firmware: remove double define for DIVC/DIVR * Scripts: check folder names too. Docker: replace syntax check with make lint. * Reformat Sources and Migrate to new file naming convention * Docker: symlink clang-format-12 to clang-format * Add coding style guide
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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 <dialogs/dialogs.h>
 | |
| #include <power/power_service/power.h>
 | |
| #include <applications/rpc/rpc.h>
 | |
| #include <applications/notification/notification.h>
 | |
| 
 | |
| #include "../bt_settings.h"
 | |
| 
 | |
| #define BT_API_UNLOCK_EVENT (1UL << 0)
 | |
| 
 | |
| typedef enum {
 | |
|     BtMessageTypeUpdateStatusbar,
 | |
|     BtMessageTypeUpdateBatteryLevel,
 | |
|     BtMessageTypePinCodeShow,
 | |
|     BtMessageTypeKeysStorageUpdated,
 | |
|     BtMessageTypeSetProfile,
 | |
| } BtMessageType;
 | |
| 
 | |
| typedef union {
 | |
|     uint32_t pin_code;
 | |
|     uint8_t battery_level;
 | |
|     BtProfile profile;
 | |
| } BtMessageData;
 | |
| 
 | |
| typedef struct {
 | |
|     BtMessageType type;
 | |
|     BtMessageData data;
 | |
|     bool* result;
 | |
| } BtMessage;
 | |
| 
 | |
| struct Bt {
 | |
|     uint8_t* bt_keys_addr_start;
 | |
|     uint16_t bt_keys_size;
 | |
|     uint16_t max_packet_size;
 | |
|     BtSettings bt_settings;
 | |
|     BtStatus status;
 | |
|     BtProfile profile;
 | |
|     osMessageQueueId_t message_queue;
 | |
|     NotificationApp* notification;
 | |
|     Gui* gui;
 | |
|     ViewPort* statusbar_view_port;
 | |
|     DialogsApp* dialogs;
 | |
|     DialogMessage* dialog_message;
 | |
|     Power* power;
 | |
|     Rpc* rpc;
 | |
|     RpcSession* rpc_session;
 | |
|     osEventFlagsId_t rpc_event;
 | |
|     osEventFlagsId_t api_event;
 | |
|     BtStatusChangedCallback status_changed_cb;
 | |
|     void* status_changed_ctx;
 | |
| };
 |