 956788c09b
			
		
	
	
		956788c09b
		
			
		
	
	
	
	
		
			
			* nfc: clean up scenes * nfc worker: remove field on from worker * nfc worker: move full data exchange to furi hal * nfc_device: check UID length * nfc protocol: introduce mifare common API * nfc: move common data to furi hal nfc * nfc: rename emv_decoder -> emv * nfc: move emv data structure to emv lib * nfc: remove deactivate after detection * nfc: rework furi hal nfc detect * nfc: clean up CLI commands and type * nfc: remove unused includes and function * nfc: add TxRxType enum * nfc: read mifare ultralight refactoring * nfc: refactore mifare ultralight start * rfal: fix custom data exchange * nfc: refactor read bank card * nfc: refactor read emv application * nfc: refactor emv test emulation * nfc: refactor uid emulation * nfc: add limit to uid emulation logger * fix source formatting * furi_hal_nfc: fix data exchange full * nfc: fix mifare ultralight type load Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| #include <storage/storage.h>
 | |
| #include <dialogs/dialogs.h>
 | |
| 
 | |
| #include <furi_hal_nfc.h>
 | |
| #include <lib/nfc_protocols/emv.h>
 | |
| #include <lib/nfc_protocols/mifare_ultralight.h>
 | |
| #include <lib/nfc_protocols/mifare_classic.h>
 | |
| #include <lib/nfc_protocols/mifare_desfire.h>
 | |
| 
 | |
| #define NFC_DEV_NAME_MAX_LEN 22
 | |
| #define NFC_FILE_NAME_MAX_LEN 120
 | |
| #define NFC_READER_DATA_MAX_SIZE 64
 | |
| 
 | |
| #define NFC_APP_FOLDER "/any/nfc"
 | |
| #define NFC_APP_EXTENSION ".nfc"
 | |
| #define NFC_APP_SHADOW_EXTENSION ".shd"
 | |
| 
 | |
| typedef enum {
 | |
|     NfcDeviceProtocolUnknown,
 | |
|     NfcDeviceProtocolEMV,
 | |
|     NfcDeviceProtocolMifareUl,
 | |
|     NfcDeviceProtocolMifareClassic,
 | |
|     NfcDeviceProtocolMifareDesfire,
 | |
| } NfcProtocol;
 | |
| 
 | |
| typedef enum {
 | |
|     NfcDeviceSaveFormatUid,
 | |
|     NfcDeviceSaveFormatBankCard,
 | |
|     NfcDeviceSaveFormatMifareUl,
 | |
|     NfcDeviceSaveFormatMifareClassic,
 | |
|     NfcDeviceSaveFormatMifareDesfire,
 | |
| } NfcDeviceSaveFormat;
 | |
| 
 | |
| typedef struct {
 | |
|     uint8_t data[NFC_READER_DATA_MAX_SIZE];
 | |
|     uint16_t size;
 | |
| } NfcReaderRequestData;
 | |
| 
 | |
| typedef struct {
 | |
|     FuriHalNfcDevData nfc_data;
 | |
|     NfcProtocol protocol;
 | |
|     NfcReaderRequestData reader_data;
 | |
|     union {
 | |
|         EmvData emv_data;
 | |
|         MfUltralightData mf_ul_data;
 | |
|         MfClassicData mf_classic_data;
 | |
|         MifareDesfireData mf_df_data;
 | |
|     };
 | |
| } NfcDeviceData;
 | |
| 
 | |
| typedef struct {
 | |
|     Storage* storage;
 | |
|     DialogsApp* dialogs;
 | |
|     NfcDeviceData dev_data;
 | |
|     char dev_name[NFC_DEV_NAME_MAX_LEN + 1];
 | |
|     char file_name[NFC_FILE_NAME_MAX_LEN];
 | |
|     NfcDeviceSaveFormat format;
 | |
|     bool shadow_file_exist;
 | |
| } NfcDevice;
 | |
| 
 | |
| NfcDevice* nfc_device_alloc();
 | |
| 
 | |
| void nfc_device_free(NfcDevice* nfc_dev);
 | |
| 
 | |
| void nfc_device_set_name(NfcDevice* dev, const char* name);
 | |
| 
 | |
| bool nfc_device_save(NfcDevice* dev, const char* dev_name);
 | |
| 
 | |
| bool nfc_device_save_shadow(NfcDevice* dev, const char* dev_name);
 | |
| 
 | |
| bool nfc_device_load(NfcDevice* dev, const char* file_path);
 | |
| 
 | |
| bool nfc_file_select(NfcDevice* dev);
 | |
| 
 | |
| void nfc_device_data_clear(NfcDeviceData* dev);
 | |
| 
 | |
| void nfc_device_clear(NfcDevice* dev);
 | |
| 
 | |
| bool nfc_device_delete(NfcDevice* dev);
 | |
| 
 | |
| bool nfc_device_restore(NfcDevice* dev);
 |