mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-21 04:50:14 -08:00
1f4789fe53
* fix 'hf 15 csetuid' * check for error codes, prevent client crash * some include file refactoring * some whitespace fixes * allow longer timeout for write commands * add function to send EOF only * modify 'hf list 15' to display "<EOF>" * add tracing of Reader commands * if REQ_OPTION is set on write commands, send separate EOF to request tag response * use #defines instead of hex constants * switch off field after UID update * return last tag response (if there is any) * iso15693: decode WRITE_MULTI_BLOCK in 'hf list 15'
20 lines
669 B
C
20 lines
669 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 ISO15693 commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDHF15_H__
|
|
#define CMDHF15_H__
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern int CmdHF15(const char *Cmd);
|
|
extern int HF15Reader(const char *Cmd, bool verbose);
|
|
|
|
#endif
|