]>
Commit | Line | Data |
---|---|---|
f397b5cc M |
1 | //----------------------------------------------------------------------------- |
2 | // Merlok - June 2011 | |
3 | // Gerhard de Koning Gans - May 2008 | |
4 | // Hagen Fritsch - June 2010 | |
5 | // | |
6 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
7 | // at your option, any later version. See the LICENSE.txt file for the text of | |
8 | // the license. | |
9 | //----------------------------------------------------------------------------- | |
10 | // Routines to support ISO 14443 type A. | |
11 | //----------------------------------------------------------------------------- | |
12 | ||
534983d7 | 13 | #ifndef __ISO14443A_H |
14 | #define __ISO14443A_H | |
1f065e1d | 15 | |
de77d4ac | 16 | #include <stdint.h> |
17 | #include <stdbool.h> | |
18 | #include "mifare.h" | |
b62a5a84 | 19 | |
6a1f2d82 | 20 | extern void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *par); |
e691fc45 | 21 | extern void AppendCrc14443a(uint8_t *data, int len); |
20f9a2a1 | 22 | |
6a1f2d82 | 23 | extern void ReaderTransmit(uint8_t *frame, uint16_t len, uint32_t *timing); |
24 | extern void ReaderTransmitBitsPar(uint8_t *frame, uint16_t bits, uint8_t *par, uint32_t *timing); | |
25 | extern void ReaderTransmitPar(uint8_t *frame, uint16_t len, uint8_t *par, uint32_t *timing); | |
26 | extern int ReaderReceive(uint8_t *receivedAnswer, uint8_t *par); | |
20f9a2a1 | 27 | |
7bc95e2e | 28 | extern void iso14443a_setup(uint8_t fpga_minor_mode); |
6a1f2d82 | 29 | extern int iso14_apdu(uint8_t *cmd, uint16_t cmd_len, void *data); |
de77d4ac | 30 | extern int iso14443a_select_card(uint8_t *uid_ptr, iso14a_card_select_t *resp_data, uint32_t *cuid_ptr, bool anticollision, uint8_t num_cascades); |
902cb3c0 | 31 | extern void iso14a_set_trigger(bool enable); |
534983d7 | 32 | #endif /* __ISO14443A_H */ |