mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
17ad0e0948
FIX: 14b sim changes in iso14443b.c , *experimental* I took some timing loops from "14a sim" armsrc/iso14443a.c and merged it into the "14b sim". Now using two pm3's I can have one simulating and the other reading and it works. Ask @pwpiwi if you want to know more of what those timing loops does. Something about waiting for the fpga delay queue...
24 lines
868 B
C
24 lines
868 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
// High frequency ISO14443B commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDHF14B_H__
|
|
#define CMDHF14B_H__
|
|
|
|
int CmdHF14B(const char *Cmd);
|
|
int CmdHF14BList(const char *Cmd);
|
|
int CmdHF14BInfo(const char *Cmd);
|
|
int CmdHF14BSim(const char *Cmd);
|
|
int CmdHF14BSnoop(const char *Cmd);
|
|
int CmdSri512Read(const char *Cmd);
|
|
int CmdSrix4kRead(const char *Cmd);
|
|
int CmdHF14BWrite( const char *cmd);
|
|
int HF14BInfo(bool verbose);
|
|
|
|
#endif
|