This commit is contained in:
iceman1001 2025-06-30 14:28:24 +02:00
commit 16cbb4a446
5 changed files with 88 additions and 78 deletions

View file

@ -20,10 +20,14 @@
#define _ISO15_H_
#include "common.h"
#define ISO15693_UID_LENGTH 8
#define ISO15693_ATQB_LENGTH 7
typedef struct {
uint8_t uid[8];
uint8_t uid[ISO15693_UID_LENGTH];
uint8_t uidlen;
uint8_t atqb[7];
uint8_t atqb[ISO15693_ATQB_LENGTH];
uint8_t chipid;
uint8_t cid;
} PACKED iso15_card_select_t;