]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdlfpcf7931.h
fix - some card cant reset so quick. (#713)
[proxmark3-svn] / client / cmdlfpcf7931.h
CommitLineData
f5fca2ed 1//-----------------------------------------------------------------------------
2// Copyright (C) 2012 Chalk <chalk.secu at gmail.com>
dc4300ba
D
3// 2015 Dake <thomas.cayrou at gmail.com>
4
f5fca2ed 5// This code is licensed to you under the terms of the GNU GPL, version 2 or,
6// at your option, any later version. See the LICENSE.txt file for the text of
7// the license.
8//-----------------------------------------------------------------------------
9// Low frequency PCF7931 commands
10//-----------------------------------------------------------------------------
11
12#ifndef CMDLFPCF7931_H__
13#define CMDLFPCF7931_H__
14
ad939de5 15#include <stdint.h>
16
dc4300ba 17struct pcf7931_config{
d10e08ae 18 uint8_t Pwd[7];
19 uint16_t InitDelay;
20 int16_t OffsetWidth;
21 int16_t OffsetPosition;
dc4300ba
D
22};
23
d10e08ae 24int pcf7931_resetConfig();
25int pcf7931_printConfig();
26
27int usage_pcf7931_read();
28int usage_pcf7931_write();
29int usage_pcf7931_config();
30
f5fca2ed 31int CmdLFPCF7931(const char *Cmd);
32
33int CmdLFPCF7931Read(const char *Cmd);
dc4300ba 34int CmdLFPCF7931Write(const char *Cmd);
dc4300ba
D
35int CmdLFPCF7931Config(const char *Cmd);
36
f5fca2ed 37#endif
Impressum, Datenschutz