mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 13:00:42 -07:00
CHG: lowered the samples read.
This commit is contained in:
parent
360a5b1b3c
commit
53484563d7
5 changed files with 5 additions and 5 deletions
|
@ -126,7 +126,7 @@ int CmdJablotronDemod(const char *Cmd) {
|
||||||
|
|
||||||
int CmdJablotronRead(const char *Cmd) {
|
int CmdJablotronRead(const char *Cmd) {
|
||||||
CmdLFRead("s");
|
CmdLFRead("s");
|
||||||
getSamples("20000", TRUE);
|
getSamples("12000", TRUE);
|
||||||
return CmdJablotronDemod(Cmd);
|
return CmdJablotronDemod(Cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -202,7 +202,7 @@ lf t55xx wr b 4 d 4c0003ff
|
||||||
|
|
||||||
int CmdLFNedapRead(const char *Cmd) {
|
int CmdLFNedapRead(const char *Cmd) {
|
||||||
CmdLFRead("s");
|
CmdLFRead("s");
|
||||||
getSamples("20000", TRUE);
|
getSamples("12000", TRUE);
|
||||||
return CmdLFNedapDemod("");
|
return CmdLFNedapDemod("");
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -74,7 +74,7 @@ int GetPyramidBits(uint32_t fc, uint32_t cn, uint8_t *pyramidBits) {
|
||||||
|
|
||||||
int CmdPyramidRead(const char *Cmd) {
|
int CmdPyramidRead(const char *Cmd) {
|
||||||
CmdLFRead("s");
|
CmdLFRead("s");
|
||||||
getSamples("20000", TRUE);
|
getSamples("12000", TRUE);
|
||||||
return CmdFSKdemodPyramid("");
|
return CmdFSKdemodPyramid("");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -60,7 +60,7 @@ int CmdVikingRead(const char *Cmd) {
|
||||||
// read lf silently
|
// read lf silently
|
||||||
CmdLFRead("s");
|
CmdLFRead("s");
|
||||||
// get samples silently
|
// get samples silently
|
||||||
getSamples("20000", TRUE);
|
getSamples("12000", TRUE);
|
||||||
// demod and output viking ID
|
// demod and output viking ID
|
||||||
return CmdVikingDemod(Cmd);
|
return CmdVikingDemod(Cmd);
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,7 +99,7 @@ int CmdVisa2kDemod(const char *Cmd) {
|
||||||
|
|
||||||
int CmdVisa2kRead(const char *Cmd) {
|
int CmdVisa2kRead(const char *Cmd) {
|
||||||
CmdLFRead("s");
|
CmdLFRead("s");
|
||||||
getSamples("20000",TRUE);
|
getSamples("12000",TRUE);
|
||||||
return CmdVisa2kDemod(Cmd);
|
return CmdVisa2kDemod(Cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue