* 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>
		
			
				
	
	
		
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include "../ibutton_i.h"
 | 
						|
 | 
						|
#include <dolphin/dolphin.h>
 | 
						|
 | 
						|
void ibutton_scene_add_type_byte_input_callback(void* context) {
 | 
						|
    iButton* ibutton = context;
 | 
						|
    view_dispatcher_send_custom_event(ibutton->view_dispatcher, iButtonCustomEventByteEditResult);
 | 
						|
}
 | 
						|
 | 
						|
void ibutton_scene_add_value_on_enter(void* context) {
 | 
						|
    iButton* ibutton = context;
 | 
						|
    iButtonKey* key = ibutton->key;
 | 
						|
    uint8_t* new_key_data = malloc(IBUTTON_KEY_DATA_SIZE);
 | 
						|
 | 
						|
    scene_manager_set_scene_state(
 | 
						|
        ibutton->scene_manager, iButtonSceneAddValue, (uint32_t)new_key_data);
 | 
						|
    memcpy(new_key_data, ibutton_key_get_data_p(key), ibutton_key_get_data_size(key));
 | 
						|
 | 
						|
    byte_input_set_result_callback(
 | 
						|
        ibutton->byte_input,
 | 
						|
        ibutton_scene_add_type_byte_input_callback,
 | 
						|
        NULL,
 | 
						|
        ibutton,
 | 
						|
        new_key_data,
 | 
						|
        ibutton_key_get_data_size(key));
 | 
						|
 | 
						|
    byte_input_set_header_text(ibutton->byte_input, "Enter the key");
 | 
						|
    view_dispatcher_switch_to_view(ibutton->view_dispatcher, iButtonViewByteInput);
 | 
						|
}
 | 
						|
 | 
						|
bool ibutton_scene_add_value_on_event(void* context, SceneManagerEvent event) {
 | 
						|
    iButton* ibutton = context;
 | 
						|
    uint8_t* new_key_data =
 | 
						|
        (uint8_t*)scene_manager_get_scene_state(ibutton->scene_manager, iButtonSceneAddValue);
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    if(event.type == SceneManagerEventTypeCustom) {
 | 
						|
        consumed = true;
 | 
						|
        if(event.event == iButtonCustomEventByteEditResult) {
 | 
						|
            ibutton_key_set_data(ibutton->key, new_key_data, IBUTTON_KEY_DATA_SIZE);
 | 
						|
            DOLPHIN_DEED(DolphinDeedIbuttonAdd);
 | 
						|
            scene_manager_next_scene(ibutton->scene_manager, iButtonSceneSaveName);
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void ibutton_scene_add_value_on_exit(void* context) {
 | 
						|
    iButton* ibutton = context;
 | 
						|
    uint8_t* new_key_data =
 | 
						|
        (uint8_t*)scene_manager_get_scene_state(ibutton->scene_manager, iButtonSceneAddValue);
 | 
						|
 | 
						|
    byte_input_set_result_callback(ibutton->byte_input, NULL, NULL, NULL, NULL, 0);
 | 
						|
    byte_input_set_header_text(ibutton->byte_input, NULL);
 | 
						|
    free(new_key_data);
 | 
						|
}
 |