repo.or.cz
/
kk_librfid.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
paths changed
[kk_librfid.git]
/
firmware
/
src
/
picc
/
piccsim.h
blob
3cf65144c7d322167eb1823248e3ae72dde7a2cb
1
2
#include <librfid/rfid_layer2_iso14443a.h>
3
4
struct
piccsim_state
{
5
enum
rfid_layer2_id l2prot
;
6
unsigned char
uid
[
10
];
7
u_int8_t uid_len
;
8
union
{
9
struct
{
10
enum
iso14443a_state state
;
11
enum
iso14443a_level level
;
12
u_int32_t flags
;
13
}
iso14443a
;
14
struct
{
15
}
iso14443b
;
16
}
l2
;
17
18
union
{
19
u_int32_t flags
;
20
}
proto
;
21
}
22
23
#define PICCSIM_PROT_F_AUTO_WTX 0x01