mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-21 13:53:26 -07:00
1. Mifare read block command
2. Mifare read sector (via 1) 3. Mifare write block 4. fixed several bugs in iso 14443 select added Issue 23 Issue 26
This commit is contained in:
parent
cee5a30d53
commit
20f9a2a1d5
16 changed files with 1654 additions and 54 deletions
|
@ -2,12 +2,17 @@
|
|||
#define __ISO14443A_H
|
||||
#include "common.h"
|
||||
|
||||
extern byte_t oddparity (const byte_t bt);
|
||||
extern uint32_t GetParity(const uint8_t * pbtCmd, int iLen);
|
||||
extern void AppendCrc14443a(uint8_t* data, int len);
|
||||
|
||||
extern void ReaderTransmitShort(const uint8_t* bt);
|
||||
extern void ReaderTransmit(uint8_t* frame, int len);
|
||||
extern void ReaderTransmitPar(uint8_t* frame, int len, uint32_t par);
|
||||
extern int ReaderReceive(uint8_t* receivedAnswer);
|
||||
|
||||
extern void iso14443a_setup();
|
||||
extern int iso14443a_select_card(uint8_t * uid_ptr, iso14a_card_select_t * card_info);
|
||||
extern int iso14443a_select_card(uint8_t * uid_ptr, iso14a_card_select_t * resp_data, uint32_t * cuid_ptr);
|
||||
extern void iso14a_set_trigger(int enable);
|
||||
|
||||
#endif /* __ISO14443A_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue