 1853359d78
			
		
	
	
		1853359d78
		
			
		
	
	
	
	
		
			
			* nfc: start nfc over rpc * nfc: add detect reader state * nfc: add reader analyzer * nfc: rework reader analyzer * reader_analyzer: print collected nonces to debug * reader analyzer: add save on SD card * reader_analyzer: separate mfkey related part to different file * mfkey32: add logic for collecting parameters * nfc: rework pcap with reader analyzer * nfc: add logger for reader * nfc: clean up * nfc: add detect reader view * nfc: add detect reader and mfkey nonces scenes * nfc: add mfkey comlplete scene * nfc: add new assets * nfc: fix gui * nfc: fix iso14443-4 UID emulation * nfc: add no sd card notification * nfc: fix grammar Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			335 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| typedef struct NfcDebugPcap NfcDebugPcap;
 | |
| 
 | |
| NfcDebugPcap* nfc_debug_pcap_alloc();
 | |
| 
 | |
| void nfc_debug_pcap_free(NfcDebugPcap* instance);
 | |
| 
 | |
| void nfc_debug_pcap_process_data(
 | |
|     NfcDebugPcap* instance,
 | |
|     uint8_t* data,
 | |
|     uint16_t len,
 | |
|     bool reader_to_tag,
 | |
|     bool crc_dropped);
 |