mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-16 02:03:00 -07:00
lf/data combined detectclock functions to one
cleaned up detect clock functions - now uses one main function that takes a char argument to select which modulation to detect the clock for REMOVED commands: pskdetectclock, nrzdetectclock, fskfcdetect. renamed DetectClock function to DetectAskClock to be more descriptive.
This commit is contained in:
parent
b4fb11ba92
commit
f3bf15e484
7 changed files with 175 additions and 184 deletions
|
@ -61,7 +61,7 @@ int CmdEM410xRead(const char *Cmd)
|
|||
}
|
||||
|
||||
/* get clock */
|
||||
clock = GetClock(Cmd, high, 0);
|
||||
clock = GetAskClock(Cmd, false, false);
|
||||
|
||||
/* parity for our 4 columns */
|
||||
parity[0] = parity[1] = parity[2] = parity[3] = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue