mifare_classic_block_manufacturer: clearer struct members
Fixes issue 250
This commit is contained in:
parent
af7eef0c54
commit
7638e9ea87
1 changed files with 3 additions and 3 deletions
|
@ -87,11 +87,11 @@ bool nfc_initiator_mifare_cmd(nfc_device *pnd, const mifare_cmd mc, const uin
|
||||||
|
|
||||||
// MIFARE Classic
|
// MIFARE Classic
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t abtUID[4];
|
uint8_t abtUID[4]; // beware for 7bytes UID it goes over next fields
|
||||||
uint8_t btBCC;
|
uint8_t btBCC;
|
||||||
uint8_t btUnknown;
|
uint8_t btSAK; // beware it's not always exactly SAK
|
||||||
uint8_t abtATQA[2];
|
uint8_t abtATQA[2];
|
||||||
uint8_t abtUnknown[8];
|
uint8_t abtManufacturer[8];
|
||||||
} mifare_classic_block_manufacturer;
|
} mifare_classic_block_manufacturer;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in a new issue