1 #ifndef _RFID_PROTOCOL_MFUL_H
2 #define _RFID_PROTOCOL_MFUL_H
4 int rfid_mful_lock_page(struct rfid_protocol_handle *ph, unsigned int page);
5 int rfid_mful_lock_otp(struct rfid_protocol_handle *ph);
7 #define MIFARE_UL_PAGE_MAX 15
11 #define MIFARE_UL_CMD_WRITE 0xA2
12 #define MIFARE_UL_CMD_READ 0x30
14 #define MIFARE_UL_RESP_ACK 0x0a
15 #define MIFARE_UL_RESP_NAK 0x00
17 #define MIFARE_UL_PAGE_LOCK 2
18 #define MIFARE_UL_PAGE_OTP 3
20 extern struct rfid_protocol rfid_protocol_mful;
22 #endif /* __LIBRFID__ */