 b9a766d909
			
		
	
	
		b9a766d909
		
	
	
	
	
		
			
			* 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>
		
			
				
	
	
		
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| /** Start Hid Keyboard Profile
 | |
|  */
 | |
| void furi_hal_bt_hid_start();
 | |
| 
 | |
| /** Stop Hid Keyboard Profile
 | |
|  */
 | |
| void furi_hal_bt_hid_stop();
 | |
| 
 | |
| /** Press keyboard button
 | |
|  *
 | |
|  * @param button    button code from HID specification
 | |
|  *
 | |
|  * @return          true on success
 | |
|  */
 | |
| bool furi_hal_bt_hid_kb_press(uint16_t button);
 | |
| 
 | |
| /** Release keyboard button
 | |
|  *
 | |
|  * @param button    button code from HID specification
 | |
|  *
 | |
|  * @return          true on success
 | |
|  */
 | |
| bool furi_hal_bt_hid_kb_release(uint16_t button);
 | |
| 
 | |
| /** Release all keyboard buttons
 | |
|  *
 | |
|  * @return          true on success
 | |
|  */
 | |
| bool furi_hal_bt_hid_kb_release_all();
 | |
| 
 | |
| /** Set mouse movement and send HID report
 | |
|  *
 | |
|  * @param      dx  x coordinate delta
 | |
|  * @param      dy  y coordinate delta
 | |
|  */
 | |
| bool furi_hal_bt_hid_mouse_move(int8_t dx, int8_t dy);
 | |
| 
 | |
| /** Set mouse button to pressed state and send HID report
 | |
|  *
 | |
|  * @param      button  key code
 | |
|  */
 | |
| bool furi_hal_bt_hid_mouse_press(uint8_t button);
 | |
| 
 | |
| /** Set mouse button to released state and send HID report
 | |
|  *
 | |
|  * @param      button  key code
 | |
|  */
 | |
| bool furi_hal_bt_hid_mouse_release(uint8_t button);
 | |
| 
 | |
| /** Set mouse button to released state and send HID report
 | |
|  *
 | |
|  * @param      button  key code
 | |
|  */
 | |
| bool furi_hal_bt_hid_mouse_release_all();
 | |
| 
 | |
| /** Set mouse wheel position and send HID report
 | |
|  *
 | |
|  * @param      delta  number of scroll steps
 | |
|  */
 | |
| bool furi_hal_bt_hid_mouse_scroll(int8_t delta);
 | |
| 
 | |
| /** Set the following consumer key to pressed state and send HID report
 | |
|  *
 | |
|  * @param      button  key code
 | |
|  */
 | |
| bool furi_hal_bt_hid_consumer_key_press(uint16_t button);
 | |
| 
 | |
| /** Set the following consumer key to released state and send HID report
 | |
|  *
 | |
|  * @param      button  key code
 | |
|  */
 | |
| bool furi_hal_bt_hid_consumer_key_release(uint16_t button);
 | |
| 
 | |
| /** Set consumer key to released state and send HID report
 | |
|  *
 | |
|  * @param      button  key code
 | |
|  */
 | |
| bool furi_hal_bt_hid_consumer_key_release_all();
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |