mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-10-06 11:56:53 +08:00
* don't do READCHECK when not trying to authenticate * standard LED handling * remove unused FLAG_ICLASS_READER_ONLY_ONCE and FLAG_ICLASS_READER_ONE_TRY * sanity check for negative times in TransmitTo15693Tag() * increase reader timeout for 'hf 15' functions to be enough for slot 7 answers to ACTALL * add 'hf iclass permute' inspired by RRG repository * whitespace fixes
18 lines
702 B
C
18 lines
702 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
// Copyright (C) 2011 Gerhard de Koning Gans
|
|
//
|
|
// 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 iClass support
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDHFICLASS_H__
|
|
#define CMDHFICLASS_H__
|
|
|
|
int CmdHFiClass(const char *Cmd);
|
|
int HFiClassReader(const char *Cmd, bool loop, bool verbose);
|
|
|
|
#endif
|