* furi-hal-bt: add mutex guarding core2 state * ble-glue: configure ble keys storage in SRAM2 * bt: add load and save ble keys in internal storage * bt: improve work furi_hal_bt API * bt: rework app_entry -> ble_glue * bt: apply changes for f6 target * desktop: remove furi check * ble-glue: comment NVM in SRAM2 configuration * FuriHal: fix flash controller state corruption, fix incorrect semaphore release, implement C1-C2 flash controller access according to spec. Gui: change logging level. * Libs: better lfs integration with lfs_config. * Ble: switch C2 NVM to RAM. * FuriHalCrypto: ensure that core2 is alive before sending shci commands * Ble: fix incorrect nvm buffer size Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.0 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 "../bt_settings.h"
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    BtStatusOff,
 | 
						|
    BtStatusAdvertising,
 | 
						|
    BtStatusConnected,
 | 
						|
} BtStatus;
 | 
						|
 | 
						|
typedef enum {
 | 
						|
    BtMessageTypeUpdateStatusbar,
 | 
						|
    BtMessageTypeUpdateBatteryLevel,
 | 
						|
    BtMessageTypePinCodeShow,
 | 
						|
    BtMessageTypeKeysStorageUpdated,
 | 
						|
} BtMessageType;
 | 
						|
 | 
						|
typedef union {
 | 
						|
    uint32_t pin_code;
 | 
						|
    uint8_t battery_level;
 | 
						|
} BtMessageData;
 | 
						|
 | 
						|
typedef struct {
 | 
						|
    BtMessageType type;
 | 
						|
    BtMessageData data;
 | 
						|
} BtMessage;
 | 
						|
 | 
						|
struct Bt {
 | 
						|
    uint8_t* bt_keys_addr_start;
 | 
						|
    uint16_t bt_keys_size;
 | 
						|
    BtSettings bt_settings;
 | 
						|
    BtStatus status;
 | 
						|
    osMessageQueueId_t message_queue;
 | 
						|
    Gui* gui;
 | 
						|
    ViewPort* statusbar_view_port;
 | 
						|
    DialogsApp* dialogs;
 | 
						|
    DialogMessage* dialog_message;
 | 
						|
    Power* power;
 | 
						|
    Rpc* rpc;
 | 
						|
    RpcSession* rpc_session;
 | 
						|
    osSemaphoreId_t rpc_sem;
 | 
						|
};
 |