 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>
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <furi_hal_bt.h>
 | |
| #include <furi_hal_bt_hid.h>
 | |
| #include <furi_hal_usb.h>
 | |
| #include <furi_hal_usb_hid.h>
 | |
| 
 | |
| #include <bt/bt_service/bt.h>
 | |
| #include <gui/gui.h>
 | |
| #include <gui/view.h>
 | |
| #include <gui/view_dispatcher.h>
 | |
| #include <notification/notification.h>
 | |
| #include <storage/storage.h>
 | |
| 
 | |
| #include <gui/modules/submenu.h>
 | |
| #include <gui/modules/dialog_ex.h>
 | |
| #include <gui/modules/popup.h>
 | |
| #include "views/hid_keynote.h"
 | |
| #include "views/hid_keyboard.h"
 | |
| #include "views/hid_media.h"
 | |
| #include "views/hid_mouse.h"
 | |
| #include "views/hid_mouse_jiggler.h"
 | |
| #include "views/hid_tiktok.h"
 | |
| 
 | |
| #define HID_BT_KEYS_STORAGE_PATH EXT_PATH("apps/Tools/.bt_hid.keys")
 | |
| 
 | |
| typedef enum {
 | |
|     HidTransportUsb,
 | |
|     HidTransportBle,
 | |
| } HidTransport;
 | |
| 
 | |
| typedef struct Hid Hid;
 | |
| 
 | |
| struct Hid {
 | |
|     Bt* bt;
 | |
|     Gui* gui;
 | |
|     NotificationApp* notifications;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
|     Submenu* device_type_submenu;
 | |
|     DialogEx* dialog;
 | |
|     HidKeynote* hid_keynote;
 | |
|     HidKeyboard* hid_keyboard;
 | |
|     HidMedia* hid_media;
 | |
|     HidMouse* hid_mouse;
 | |
|     HidMouseJiggler* hid_mouse_jiggler;
 | |
|     HidTikTok* hid_tiktok;
 | |
| 
 | |
|     HidTransport transport;
 | |
|     uint32_t view_id;
 | |
| };
 | |
| 
 | |
| void hid_hal_keyboard_press(Hid* instance, uint16_t event);
 | |
| void hid_hal_keyboard_release(Hid* instance, uint16_t event);
 | |
| void hid_hal_keyboard_release_all(Hid* instance);
 | |
| 
 | |
| void hid_hal_consumer_key_press(Hid* instance, uint16_t event);
 | |
| void hid_hal_consumer_key_release(Hid* instance, uint16_t event);
 | |
| void hid_hal_consumer_key_release_all(Hid* instance);
 | |
| 
 | |
| void hid_hal_mouse_move(Hid* instance, int8_t dx, int8_t dy);
 | |
| void hid_hal_mouse_scroll(Hid* instance, int8_t delta);
 | |
| void hid_hal_mouse_press(Hid* instance, uint16_t event);
 | |
| void hid_hal_mouse_release(Hid* instance, uint16_t event);
 | |
| void hid_hal_mouse_release_all(Hid* instance); |