 d92b0a82cc
			
		
	
	
		d92b0a82cc
		
			
		
	
	
	
	
		
			
			"A long time ago in a galaxy far, far away...." we started NFC subsystem refactoring. Starring: - @gornekich - NFC refactoring project lead, architect, senior developer - @gsurkov - architect, senior developer - @RebornedBrain - senior developer Supporting roles: - @skotopes, @DrZlo13, @hedger - general architecture advisors, code review - @Astrrra, @doomwastaken, @Hellitron, @ImagineVagon333 - quality assurance Special thanks: @bettse, @pcunning, @nxv, @noproto, @AloneLiberty and everyone else who has been helping us all this time and contributing valuable knowledges, ideas and source code.
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../nfc_app_i.h"
 | |
| 
 | |
| #include "../helpers/protocol_support/nfc_protocol_support_gui_common.h"
 | |
| 
 | |
| static void nfc_scene_set_atqa_byte_input_changed_callback(void* context) {
 | |
|     NfcApp* instance = context;
 | |
|     iso14443_3a_set_atqa(instance->iso14443_3a_edit_data, instance->byte_input_store);
 | |
| }
 | |
| 
 | |
| void nfc_scene_set_atqa_on_enter(void* context) {
 | |
|     NfcApp* instance = context;
 | |
| 
 | |
|     iso14443_3a_get_atqa(instance->iso14443_3a_edit_data, instance->byte_input_store);
 | |
| 
 | |
|     // Setup view
 | |
|     ByteInput* byte_input = instance->byte_input;
 | |
|     byte_input_set_header_text(byte_input, "Enter ATQA in hex");
 | |
|     byte_input_set_result_callback(
 | |
|         byte_input,
 | |
|         nfc_protocol_support_common_byte_input_done_callback,
 | |
|         nfc_scene_set_atqa_byte_input_changed_callback,
 | |
|         instance,
 | |
|         instance->byte_input_store,
 | |
|         2);
 | |
|     view_dispatcher_switch_to_view(instance->view_dispatcher, NfcViewByteInput);
 | |
| }
 | |
| 
 | |
| bool nfc_scene_set_atqa_on_event(void* context, SceneManagerEvent event) {
 | |
|     NfcApp* instance = context;
 | |
|     bool consumed = false;
 | |
| 
 | |
|     if(event.type == SceneManagerEventTypeCustom) {
 | |
|         if(event.event == NfcCustomEventByteInputDone) {
 | |
|             nfc_device_set_data(
 | |
|                 instance->nfc_device, NfcProtocolIso14443_3a, instance->iso14443_3a_edit_data);
 | |
|             scene_manager_next_scene(instance->scene_manager, NfcSceneSetUid);
 | |
|             consumed = true;
 | |
|         }
 | |
|     }
 | |
|     return consumed;
 | |
| }
 | |
| 
 | |
| void nfc_scene_set_atqa_on_exit(void* context) {
 | |
|     NfcApp* instance = context;
 | |
| 
 | |
|     // Clear view
 | |
|     byte_input_set_result_callback(instance->byte_input, NULL, NULL, NULL, NULL, 0);
 | |
|     byte_input_set_header_text(instance->byte_input, "");
 | |
| }
 |