 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>
		
			
				
	
	
		
			74 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../subghz_i.h"
 | |
| #include "../helpers/subghz_custom_event.h"
 | |
| 
 | |
| void subghz_scene_need_saving_callback(GuiButtonType result, InputType type, void* context) {
 | |
|     furi_assert(context);
 | |
|     SubGhz* subghz = context;
 | |
| 
 | |
|     if((result == GuiButtonTypeRight) && (type == InputTypeShort)) {
 | |
|         view_dispatcher_send_custom_event(subghz->view_dispatcher, SubGhzCustomEventSceneStay);
 | |
|     } else if((result == GuiButtonTypeLeft) && (type == InputTypeShort)) {
 | |
|         view_dispatcher_send_custom_event(subghz->view_dispatcher, SubGhzCustomEventSceneExit);
 | |
|     }
 | |
| }
 | |
| 
 | |
| void subghz_scene_need_saving_on_enter(void* context) {
 | |
|     SubGhz* subghz = context;
 | |
| 
 | |
|     widget_add_string_multiline_element(
 | |
|         subghz->widget, 64, 13, AlignCenter, AlignCenter, FontPrimary, "Exit to Sub-GHz menu?");
 | |
|     widget_add_string_multiline_element(
 | |
|         subghz->widget,
 | |
|         64,
 | |
|         32,
 | |
|         AlignCenter,
 | |
|         AlignCenter,
 | |
|         FontSecondary,
 | |
|         "All unsaved will be\nlost.");
 | |
| 
 | |
|     widget_add_button_element(
 | |
|         subghz->widget, GuiButtonTypeRight, "Stay", subghz_scene_need_saving_callback, subghz);
 | |
|     widget_add_button_element(
 | |
|         subghz->widget, GuiButtonTypeLeft, "Exit", subghz_scene_need_saving_callback, subghz);
 | |
| 
 | |
|     view_dispatcher_switch_to_view(subghz->view_dispatcher, SubGhzViewIdWidget);
 | |
| }
 | |
| 
 | |
| bool subghz_scene_need_saving_on_event(void* context, SceneManagerEvent event) {
 | |
|     SubGhz* subghz = context;
 | |
|     if(event.type == SceneManagerEventTypeBack) {
 | |
|         subghz->txrx->rx_key_state = SubGhzRxKeyStateBack;
 | |
|         scene_manager_previous_scene(subghz->scene_manager);
 | |
|         return true;
 | |
|     } else if(event.type == SceneManagerEventTypeCustom) {
 | |
|         if(event.event == SubGhzCustomEventSceneStay) {
 | |
|             subghz->txrx->rx_key_state = SubGhzRxKeyStateBack;
 | |
|             scene_manager_previous_scene(subghz->scene_manager);
 | |
|             return true;
 | |
|         } else if(event.event == SubGhzCustomEventSceneExit) {
 | |
|             if(subghz->txrx->rx_key_state == SubGhzRxKeyStateExit) {
 | |
|                 subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE;
 | |
|                 subghz_preset_init(
 | |
|                     subghz,
 | |
|                     "AM650",
 | |
|                     subghz_setting_get_default_frequency(subghz->setting),
 | |
|                     NULL,
 | |
|                     0);
 | |
|                 scene_manager_search_and_switch_to_previous_scene(
 | |
|                     subghz->scene_manager, SubGhzSceneStart);
 | |
|             } else {
 | |
|                 subghz->txrx->rx_key_state = SubGhzRxKeyStateIDLE;
 | |
|                 scene_manager_previous_scene(subghz->scene_manager);
 | |
|             }
 | |
| 
 | |
|             return true;
 | |
|         }
 | |
|     }
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| void subghz_scene_need_saving_on_exit(void* context) {
 | |
|     SubGhz* subghz = context;
 | |
|     widget_reset(subghz->widget);
 | |
| }
 |