 777a4d109d
			
		
	
	
		777a4d109d
		
			
		
	
	
	
	
		
			
			* Threads: application id * Unit tests: appsdata getter test * Unit tests: moar test cases for appsdata getter * Unit tests: remove folders after test * Storage: dir_is_exist, migrate, + unit_tests * Plugins: migration * Storage: common_exists, moar unit_tests 4 "common_migrate", "common_migrate" and "common_merge" bugfixes * Storage: use FuriString for path handling * Storage API: send caller thread id with path * Storage: remove StorageType field in storage file list * Storage: simplify processing * Storage API: send caller thread id with path everywhere * Storage: /app alias, unit tests and path creation * Storage, path helper: remove unused * Examples: app data example * App plugins: use new VFS path * Storage: file_info_is_dir * Services: handle alias if the service accepts a path. * App plugins: fixes * Make PVS happy * Storage: fix storage_merge_recursive * Storage: rename process_aliases to resolve_path. Rename APPS_DATA to APP_DATA. * Apps: use predefined macro instead of raw paths. Example Apps Data: README fixes. * Storage: rename storage_common_resolve_path to storage_common_resolve_path_and_ensure_app_directory * Api: fix version * Storage: rename alias message * Storage: do not create app folders in path resolving process in certain cases. --------- Co-authored-by: Astra <93453568+Astrrra@users.noreply.github.com> Co-authored-by: Aleksandr Kutuzov <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_NAME ".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); |