2011-06-07 20:35:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Merlok - June 2011
|
|
|
|
// Gerhard de Koning Gans - May 2008
|
|
|
|
// Hagen Fritsch - June 2010
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Routines to support ISO 14443 type A.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2010-07-13 21:39:30 +08:00
|
|
|
#ifndef __ISO14443A_H
|
|
|
|
#define __ISO14443A_H
|
2015-07-23 05:00:52 +08:00
|
|
|
#include "common.h"
|
|
|
|
#include "mifare.h"
|
2012-07-11 23:52:33 +08:00
|
|
|
#include "mifaresniff.h"
|
2010-07-13 21:39:30 +08:00
|
|
|
|
2012-07-07 00:19:05 +08:00
|
|
|
typedef struct {
|
|
|
|
enum {
|
|
|
|
DEMOD_UNSYNCD,
|
2014-02-20 04:35:04 +08:00
|
|
|
// DEMOD_HALF_SYNCD,
|
|
|
|
// DEMOD_MOD_FIRST_HALF,
|
|
|
|
// DEMOD_NOMOD_FIRST_HALF,
|
2013-11-20 02:52:40 +08:00
|
|
|
DEMOD_MANCHESTER_DATA
|
|
|
|
} state;
|
2014-02-20 04:35:04 +08:00
|
|
|
uint16_t twoBits;
|
|
|
|
uint16_t highCnt;
|
2013-11-20 02:52:40 +08:00
|
|
|
uint16_t bitCount;
|
|
|
|
uint16_t collisionPos;
|
|
|
|
uint16_t syncBit;
|
2014-12-16 14:41:07 +08:00
|
|
|
uint8_t parityBits;
|
|
|
|
uint8_t parityLen;
|
2013-11-20 02:52:40 +08:00
|
|
|
uint16_t shiftReg;
|
|
|
|
uint16_t samples;
|
|
|
|
uint16_t len;
|
2014-02-20 04:35:04 +08:00
|
|
|
uint32_t startTime, endTime;
|
2013-11-20 02:52:40 +08:00
|
|
|
uint8_t *output;
|
2014-12-18 03:33:21 +08:00
|
|
|
uint8_t *parity;
|
2012-07-07 00:19:05 +08:00
|
|
|
} tDemod;
|
|
|
|
|
2014-02-20 04:35:04 +08:00
|
|
|
typedef enum {
|
|
|
|
MOD_NOMOD = 0,
|
|
|
|
MOD_SECOND_HALF,
|
|
|
|
MOD_FIRST_HALF,
|
|
|
|
MOD_BOTH_HALVES
|
|
|
|
} Modulation_t;
|
|
|
|
|
2012-07-07 00:19:05 +08:00
|
|
|
typedef struct {
|
|
|
|
enum {
|
|
|
|
STATE_UNSYNCD,
|
|
|
|
STATE_START_OF_COMMUNICATION,
|
|
|
|
STATE_MILLER_X,
|
|
|
|
STATE_MILLER_Y,
|
|
|
|
STATE_MILLER_Z,
|
2014-02-20 04:35:04 +08:00
|
|
|
// DROP_NONE,
|
|
|
|
// DROP_FIRST_HALF,
|
|
|
|
} state;
|
|
|
|
uint16_t shiftReg;
|
2015-03-24 18:45:31 +08:00
|
|
|
int16_t bitCount;
|
2014-02-20 04:35:04 +08:00
|
|
|
uint16_t len;
|
|
|
|
uint16_t byteCntMax;
|
|
|
|
uint16_t posCnt;
|
|
|
|
uint16_t syncBit;
|
2014-12-16 14:41:07 +08:00
|
|
|
uint8_t parityBits;
|
|
|
|
uint8_t parityLen;
|
2015-03-24 18:45:31 +08:00
|
|
|
uint32_t fourBits;
|
2014-02-20 04:35:04 +08:00
|
|
|
uint32_t startTime, endTime;
|
|
|
|
uint8_t *output;
|
2014-12-18 03:33:21 +08:00
|
|
|
uint8_t *parity;
|
2012-07-07 00:19:05 +08:00
|
|
|
} tUart;
|
|
|
|
|
|
|
|
|
2014-02-20 04:35:04 +08:00
|
|
|
|
2014-12-18 03:33:21 +08:00
|
|
|
extern byte_t oddparity (const byte_t bt);
|
|
|
|
extern void GetParity(const uint8_t *pbtCmd, uint16_t len, uint8_t *par);
|
2013-11-20 02:52:40 +08:00
|
|
|
extern void AppendCrc14443a(uint8_t *data, int len);
|
2011-05-26 20:55:15 +08:00
|
|
|
|
2014-12-18 03:33:21 +08:00
|
|
|
extern void ReaderTransmit(uint8_t *frame, uint16_t len, uint32_t *timing);
|
|
|
|
extern void ReaderTransmitBitsPar(uint8_t *frame, uint16_t bits, uint8_t *par, uint32_t *timing);
|
|
|
|
extern void ReaderTransmitPar(uint8_t *frame, uint16_t len, uint8_t *par, uint32_t *timing);
|
|
|
|
extern int ReaderReceive(uint8_t *receivedAnswer, uint8_t *par);
|
2011-05-26 20:55:15 +08:00
|
|
|
|
2014-02-20 04:35:04 +08:00
|
|
|
extern void iso14443a_setup(uint8_t fpga_minor_mode);
|
2014-12-18 03:33:21 +08:00
|
|
|
extern int iso14_apdu(uint8_t *cmd, uint16_t cmd_len, void *data);
|
2013-11-20 02:52:40 +08:00
|
|
|
extern int iso14443a_select_card(uint8_t *uid_ptr, iso14a_card_select_t *resp_data, uint32_t *cuid_ptr);
|
2012-12-05 07:39:18 +08:00
|
|
|
extern void iso14a_set_trigger(bool enable);
|
2010-07-13 21:39:30 +08:00
|
|
|
|
|
|
|
#endif /* __ISO14443A_H */
|