 82baf1e923
			
		
	
	
		82baf1e923
		
			
		
	
	
	
	
		
			
			* nfc app: fix unlock with manual password crash * nfc app: preserve card detected state * nfc app: fix mf keys scene switch * nfc app: fix multiple protocol tag detect notification * nfc plugin: fix retrun in function body in aime parser * iso14443-3b poller: rework ATTRIB response check * nfc app: fix navigation after file load failur * iso14443-3b poller: fix PVS warning * mfc listener: add crutch in mfc emulation
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "../nfc_app_i.h"
 | |
| #include <dolphin/dolphin.h>
 | |
| 
 | |
| void nfc_scene_detect_scan_callback(NfcScannerEvent event, void* context) {
 | |
|     furi_assert(context);
 | |
| 
 | |
|     NfcApp* instance = context;
 | |
| 
 | |
|     if(event.type == NfcScannerEventTypeDetected) {
 | |
|         nfc_app_set_detected_protocols(instance, event.data.protocols, event.data.protocol_num);
 | |
|         view_dispatcher_send_custom_event(instance->view_dispatcher, NfcCustomEventWorkerExit);
 | |
|     }
 | |
| }
 | |
| 
 | |
| void nfc_scene_detect_on_enter(void* context) {
 | |
|     NfcApp* instance = context;
 | |
| 
 | |
|     // Setup view
 | |
|     popup_reset(instance->popup);
 | |
|     popup_set_text(
 | |
|         instance->popup, "Apply card to\nFlipper's back", 97, 24, AlignCenter, AlignTop);
 | |
|     popup_set_icon(instance->popup, 0, 8, &I_NFC_manual_60x50);
 | |
|     view_dispatcher_switch_to_view(instance->view_dispatcher, NfcViewPopup);
 | |
| 
 | |
|     nfc_app_reset_detected_protocols(instance);
 | |
| 
 | |
|     instance->scanner = nfc_scanner_alloc(instance->nfc);
 | |
|     nfc_scanner_start(instance->scanner, nfc_scene_detect_scan_callback, instance);
 | |
| 
 | |
|     nfc_blink_detect_start(instance);
 | |
| }
 | |
| 
 | |
| bool nfc_scene_detect_on_event(void* context, SceneManagerEvent event) {
 | |
|     NfcApp* instance = context;
 | |
|     bool consumed = false;
 | |
| 
 | |
|     if(event.type == SceneManagerEventTypeCustom) {
 | |
|         if(event.event == NfcCustomEventWorkerExit) {
 | |
|             if(instance->protocols_detected_num > 1) {
 | |
|                 notification_message(instance->notifications, &sequence_single_vibro);
 | |
|                 scene_manager_next_scene(instance->scene_manager, NfcSceneSelectProtocol);
 | |
|             } else {
 | |
|                 scene_manager_next_scene(instance->scene_manager, NfcSceneRead);
 | |
|             }
 | |
|             consumed = true;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     return consumed;
 | |
| }
 | |
| 
 | |
| void nfc_scene_detect_on_exit(void* context) {
 | |
|     NfcApp* instance = context;
 | |
| 
 | |
|     nfc_scanner_stop(instance->scanner);
 | |
|     nfc_scanner_free(instance->scanner);
 | |
|     popup_reset(instance->popup);
 | |
| 
 | |
|     nfc_blink_stop(instance);
 | |
| }
 |