 4cee550cc6
			
		
	
	
		4cee550cc6
		
			
		
	
	
	
	
		
			
			* bt: disconnect first on profile change * bt keys: rework bt keys * saved struct: add payload size getter to API * bt: rework bt with new key storage API * bt: add keys storage operation to bt API * hid: save bt keys on sd card * bt: add unit tests for key storage * bt: working profile switch * bt: cleanup * bt hid: change keys storage path Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "bt_i.h"
 | |
| 
 | |
| bool bt_set_profile(Bt* bt, BtProfile profile) {
 | |
|     furi_assert(bt);
 | |
| 
 | |
|     // Send message
 | |
|     bool result = false;
 | |
|     BtMessage message = {
 | |
|         .type = BtMessageTypeSetProfile, .data.profile = profile, .result = &result};
 | |
|     furi_check(
 | |
|         furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
 | |
|     // Wait for unlock
 | |
|     furi_event_flag_wait(bt->api_event, BT_API_UNLOCK_EVENT, FuriFlagWaitAny, FuriWaitForever);
 | |
| 
 | |
|     return result;
 | |
| }
 | |
| 
 | |
| void bt_disconnect(Bt* bt) {
 | |
|     furi_assert(bt);
 | |
| 
 | |
|     // Send message
 | |
|     BtMessage message = {.type = BtMessageTypeDisconnect};
 | |
|     furi_check(
 | |
|         furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
 | |
|     // Wait for unlock
 | |
|     furi_event_flag_wait(bt->api_event, BT_API_UNLOCK_EVENT, FuriFlagWaitAny, FuriWaitForever);
 | |
| }
 | |
| 
 | |
| void bt_set_status_changed_callback(Bt* bt, BtStatusChangedCallback callback, void* context) {
 | |
|     furi_assert(bt);
 | |
| 
 | |
|     bt->status_changed_cb = callback;
 | |
|     bt->status_changed_ctx = context;
 | |
| }
 | |
| 
 | |
| void bt_forget_bonded_devices(Bt* bt) {
 | |
|     furi_assert(bt);
 | |
|     BtMessage message = {.type = BtMessageTypeForgetBondedDevices};
 | |
|     furi_check(
 | |
|         furi_message_queue_put(bt->message_queue, &message, FuriWaitForever) == FuriStatusOk);
 | |
| }
 | |
| 
 | |
| void bt_keys_storage_set_storage_path(Bt* bt, const char* keys_storage_path) {
 | |
|     furi_assert(bt);
 | |
|     furi_assert(bt->keys_storage);
 | |
|     furi_assert(keys_storage_path);
 | |
| 
 | |
|     bt_keys_storage_set_file_path(bt->keys_storage, keys_storage_path);
 | |
| }
 | |
| 
 | |
| void bt_keys_storage_set_default_path(Bt* bt) {
 | |
|     furi_assert(bt);
 | |
|     furi_assert(bt->keys_storage);
 | |
| 
 | |
|     bt_keys_storage_set_file_path(bt->keys_storage, BT_KEYS_STORAGE_PATH);
 | |
| }
 |