 bf8fd71c00
			
		
	
	
		bf8fd71c00
		
			
		
	
	
	
	
		
			
			* nfc magic: introduce nfc app to work with magic cards * nfc: add nfc device functions to API * nfc magic: add bacis scenes * nfc magic: add wrong card and write confirm scenes * nfc magic: introduce magic lib * nfc magic: write magic lib * nfc magic: add write commands to magic lib * nfc magic: work on worker * furi_hal_nfc: add bits data exchage method to API * nfc magic: rework with new API * nfc magic: add check and wipe scenes * nfc magic: add icons, gui fixes * nfc: format python src Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			16 lines
		
	
	
		
			286 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			286 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <lib/nfc/protocols/mifare_classic.h>
 | |
| 
 | |
| bool magic_wupa();
 | |
| 
 | |
| bool magic_read_block(uint8_t block_num, MfClassicBlock* data);
 | |
| 
 | |
| bool magic_data_access_cmd();
 | |
| 
 | |
| bool magic_write_blk(uint8_t block_num, MfClassicBlock* data);
 | |
| 
 | |
| bool magic_wipe();
 | |
| 
 | |
| void magic_deactivate();
 |