* 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>
		
			
				
	
	
		
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "../updater_i.h"
 | 
						|
#include "updater_scene.h"
 | 
						|
#include <update_util/update_operation.h>
 | 
						|
 | 
						|
void updater_scene_error_callback(GuiButtonType result, InputType type, void* context) {
 | 
						|
    furi_assert(context);
 | 
						|
    Updater* updater = context;
 | 
						|
    if(type != InputTypeShort) {
 | 
						|
        return;
 | 
						|
    }
 | 
						|
 | 
						|
    if(result == GuiButtonTypeLeft) {
 | 
						|
        view_dispatcher_send_custom_event(
 | 
						|
            updater->view_dispatcher, UpdaterCustomEventCancelUpdate);
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
void updater_scene_error_on_enter(void* context) {
 | 
						|
    Updater* updater = (Updater*)context;
 | 
						|
 | 
						|
    widget_add_button_element(
 | 
						|
        updater->widget, GuiButtonTypeLeft, "Exit", updater_scene_error_callback, updater);
 | 
						|
 | 
						|
    widget_add_string_multiline_element(
 | 
						|
        updater->widget, 64, 13, AlignCenter, AlignCenter, FontPrimary, "Error");
 | 
						|
 | 
						|
    widget_add_string_multiline_element(
 | 
						|
        updater->widget,
 | 
						|
        64,
 | 
						|
        33,
 | 
						|
        AlignCenter,
 | 
						|
        AlignCenter,
 | 
						|
        FontPrimary,
 | 
						|
        update_operation_describe_preparation_result(updater->preparation_result));
 | 
						|
 | 
						|
    view_dispatcher_switch_to_view(updater->view_dispatcher, UpdaterViewWidget);
 | 
						|
}
 | 
						|
 | 
						|
bool updater_scene_error_on_event(void* context, SceneManagerEvent event) {
 | 
						|
    Updater* updater = (Updater*)context;
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    if(event.type == SceneManagerEventTypeBack) {
 | 
						|
        view_dispatcher_stop(updater->view_dispatcher);
 | 
						|
        consumed = true;
 | 
						|
    } else if(event.type == SceneManagerEventTypeCustom) {
 | 
						|
        switch(event.event) {
 | 
						|
        case UpdaterCustomEventCancelUpdate:
 | 
						|
            view_dispatcher_stop(updater->view_dispatcher);
 | 
						|
            consumed = true;
 | 
						|
            break;
 | 
						|
        default:
 | 
						|
            break;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void updater_scene_error_on_exit(void* context) {
 | 
						|
    Updater* updater = (Updater*)context;
 | 
						|
 | 
						|
    widget_reset(updater->widget);
 | 
						|
    free(updater->pending_update);
 | 
						|
}
 |