16 lines
203 B
C
16 lines
203 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct mifare_block {
|
|
uint8_t bytes[16];
|
|
};
|
|
|
|
struct mifare_sector {
|
|
struct mifare_block blocks[4];
|
|
};
|
|
|
|
struct mifare {
|
|
struct mifare_sector sectors[16];
|
|
};
|