 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>
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <gui/gui.h>
 | |
| #include <gui/modules/popup.h>
 | |
| #include <gui/view_dispatcher.h>
 | |
| #include <gui/scene_manager.h>
 | |
| #include <gui/modules/submenu.h>
 | |
| #include <gui/modules/variable_item_list.h>
 | |
| 
 | |
| #include <desktop/desktop_settings.h>
 | |
| #include <desktop/views/desktop_view_pin_input.h>
 | |
| #include "views/desktop_settings_view_pin_setup_howto.h"
 | |
| #include "views/desktop_settings_view_pin_setup_howto2.h"
 | |
| 
 | |
| typedef enum {
 | |
|     DesktopSettingsAppViewMenu,
 | |
|     DesktopSettingsAppViewVarItemList,
 | |
|     DesktopSettingsAppViewIdPopup,
 | |
|     DesktopSettingsAppViewIdPinInput,
 | |
|     DesktopSettingsAppViewIdPinSetupHowto,
 | |
|     DesktopSettingsAppViewIdPinSetupHowto2,
 | |
| } DesktopSettingsAppView;
 | |
| 
 | |
| typedef struct {
 | |
|     DesktopSettings settings;
 | |
| 
 | |
|     Gui* gui;
 | |
|     SceneManager* scene_manager;
 | |
|     ViewDispatcher* view_dispatcher;
 | |
|     VariableItemList* variable_item_list;
 | |
|     Submenu* submenu;
 | |
|     Popup* popup;
 | |
|     DesktopViewPinInput* pin_input_view;
 | |
|     DesktopSettingsViewPinSetupHowto* pin_setup_howto_view;
 | |
|     DesktopSettingsViewPinSetupHowto2* pin_setup_howto2_view;
 | |
| 
 | |
|     PinCode pincode_buffer;
 | |
|     bool pincode_buffer_filled;
 | |
| 
 | |
|     uint8_t menu_idx;
 | |
| } DesktopSettingsApp;
 |