taitools/iccard/mifare.h
2024-02-06 03:24:58 -05:00

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];
};