mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-23 22:45:27 -07:00
corrective of default value
This commit is contained in:
parent
d8766b8cd6
commit
6c59a05616
1 changed files with 8 additions and 8 deletions
|
@ -22,7 +22,7 @@
|
||||||
|
|
||||||
static int CmdHelp(const char *Cmd);
|
static int CmdHelp(const char *Cmd);
|
||||||
|
|
||||||
struct pcf7931_config configPcf = {{0x8F,0xEF,0x0D,0xA5,0xED,0x05,0xA1},17500,{-10,30}};
|
struct pcf7931_config configPcf = {{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF},17500,{0,0}};
|
||||||
|
|
||||||
int CmdLFPCF7931Read(const char *Cmd)
|
int CmdLFPCF7931Read(const char *Cmd)
|
||||||
{
|
{
|
||||||
|
@ -60,13 +60,13 @@ int CmdLFPCF7931Config(const char *Cmd)
|
||||||
}
|
}
|
||||||
|
|
||||||
//default values
|
//default values
|
||||||
configPcf.password[0] = 0x8F;
|
configPcf.password[0] = 0xFF;
|
||||||
configPcf.password[1] = 0xEF;
|
configPcf.password[1] = 0xFF;
|
||||||
configPcf.password[2] = 0x0D;
|
configPcf.password[2] = 0xFF;
|
||||||
configPcf.password[3] = 0xA5;
|
configPcf.password[3] = 0xFF;
|
||||||
configPcf.password[4] = 0xED;
|
configPcf.password[4] = 0xFF;
|
||||||
configPcf.password[5] = 0x05;
|
configPcf.password[5] = 0xFF;
|
||||||
configPcf.password[6] = 0xA1;
|
configPcf.password[6] = 0xFF;
|
||||||
|
|
||||||
configPcf.init_delay = 17500;
|
configPcf.init_delay = 17500;
|
||||||
configPcf.offset[0] = -10;
|
configPcf.offset[0] = -10;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue