* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "bt_keys_storage.h"
 | 
						|
 | 
						|
#include <furi.h>
 | 
						|
#include <lib/toolbox/saved_struct.h>
 | 
						|
#include <storage/storage.h>
 | 
						|
 | 
						|
#define BT_KEYS_STORAGE_PATH INT_PATH(BT_KEYS_STORAGE_FILE_NAME)
 | 
						|
#define BT_KEYS_STORAGE_VERSION (0)
 | 
						|
#define BT_KEYS_STORAGE_MAGIC (0x18)
 | 
						|
 | 
						|
bool bt_keys_storage_load(Bt* bt) {
 | 
						|
    furi_assert(bt);
 | 
						|
    bool file_loaded = false;
 | 
						|
 | 
						|
    furi_hal_bt_get_key_storage_buff(&bt->bt_keys_addr_start, &bt->bt_keys_size);
 | 
						|
    furi_hal_bt_nvm_sram_sem_acquire();
 | 
						|
    file_loaded = saved_struct_load(
 | 
						|
        BT_KEYS_STORAGE_PATH,
 | 
						|
        bt->bt_keys_addr_start,
 | 
						|
        bt->bt_keys_size,
 | 
						|
        BT_KEYS_STORAGE_MAGIC,
 | 
						|
        BT_KEYS_STORAGE_VERSION);
 | 
						|
    furi_hal_bt_nvm_sram_sem_release();
 | 
						|
 | 
						|
    return file_loaded;
 | 
						|
}
 | 
						|
 | 
						|
bool bt_keys_storage_save(Bt* bt) {
 | 
						|
    furi_assert(bt);
 | 
						|
    furi_assert(bt->bt_keys_addr_start);
 | 
						|
    bool file_saved = false;
 | 
						|
 | 
						|
    furi_hal_bt_nvm_sram_sem_acquire();
 | 
						|
    file_saved = saved_struct_save(
 | 
						|
        BT_KEYS_STORAGE_PATH,
 | 
						|
        bt->bt_keys_addr_start,
 | 
						|
        bt->bt_keys_size,
 | 
						|
        BT_KEYS_STORAGE_MAGIC,
 | 
						|
        BT_KEYS_STORAGE_VERSION);
 | 
						|
    furi_hal_bt_nvm_sram_sem_release();
 | 
						|
 | 
						|
    return file_saved;
 | 
						|
}
 | 
						|
 | 
						|
bool bt_keys_storage_delete(Bt* bt) {
 | 
						|
    furi_assert(bt);
 | 
						|
    bool delete_succeed = false;
 | 
						|
    bool bt_is_active = furi_hal_bt_is_active();
 | 
						|
 | 
						|
    furi_hal_bt_stop_advertising();
 | 
						|
    delete_succeed = furi_hal_bt_clear_white_list();
 | 
						|
    if(bt_is_active) {
 | 
						|
        furi_hal_bt_start_advertising();
 | 
						|
    }
 | 
						|
 | 
						|
    return delete_succeed;
 | 
						|
}
 |