mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-16 02:03:00 -07:00
a few notation fixes
This commit is contained in:
parent
c4f51073fc
commit
f516ff0895
3 changed files with 5 additions and 5 deletions
|
@ -1069,7 +1069,7 @@ int CmdRawDemod(const char *Cmd)
|
||||||
void setClockGrid(int clk, int offset) {
|
void setClockGrid(int clk, int offset) {
|
||||||
g_DemodStartIdx = offset;
|
g_DemodStartIdx = offset;
|
||||||
g_DemodClock = clk;
|
g_DemodClock = clk;
|
||||||
PrintAndLog("demodoffset %d, clk %d",offset,clk);
|
if (g_debugMode) PrintAndLog("demodoffset %d, clk %d",offset,clk);
|
||||||
if (offset > clk) offset %= clk;
|
if (offset > clk) offset %= clk;
|
||||||
if (offset < 0) offset += clk;
|
if (offset < 0) offset += clk;
|
||||||
|
|
||||||
|
|
|
@ -1066,7 +1066,7 @@ int CmdLFfind(const char *Cmd)
|
||||||
ans=FSKrawDemod("",true);
|
ans=FSKrawDemod("",true);
|
||||||
if (ans>0) {
|
if (ans>0) {
|
||||||
PrintAndLog("\nUnknown FSK Modulated Tag Found!");
|
PrintAndLog("\nUnknown FSK Modulated Tag Found!");
|
||||||
return CheckChipType(cmdp);;
|
return CheckChipType(cmdp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bool st = true;
|
bool st = true;
|
||||||
|
@ -1074,14 +1074,14 @@ int CmdLFfind(const char *Cmd)
|
||||||
if (ans>0) {
|
if (ans>0) {
|
||||||
PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!");
|
PrintAndLog("\nUnknown ASK Modulated and Manchester encoded Tag Found!");
|
||||||
PrintAndLog("\nif it does not look right it could instead be ASK/Biphase - try 'data rawdemod ab'");
|
PrintAndLog("\nif it does not look right it could instead be ASK/Biphase - try 'data rawdemod ab'");
|
||||||
return CheckChipType(cmdp);;
|
return CheckChipType(cmdp);
|
||||||
}
|
}
|
||||||
ans=CmdPSK1rawDemod("");
|
ans=CmdPSK1rawDemod("");
|
||||||
if (ans>0) {
|
if (ans>0) {
|
||||||
PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data rawdemod p2'");
|
PrintAndLog("Possible unknown PSK1 Modulated Tag Found above!\n\nCould also be PSK2 - try 'data rawdemod p2'");
|
||||||
PrintAndLog("\nCould also be PSK3 - [currently not supported]");
|
PrintAndLog("\nCould also be PSK3 - [currently not supported]");
|
||||||
PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod'");
|
PrintAndLog("\nCould also be NRZ - try 'data nrzrawdemod'");
|
||||||
return CheckChipType(cmdp);;
|
return CheckChipType(cmdp);
|
||||||
}
|
}
|
||||||
ans = CheckChipType(cmdp);
|
ans = CheckChipType(cmdp);
|
||||||
PrintAndLog("\nNo Data Found!\n");
|
PrintAndLog("\nNo Data Found!\n");
|
||||||
|
|
|
@ -705,7 +705,7 @@ bool EM4x05testDemodReadData(uint32_t *word, bool readCmd) {
|
||||||
}
|
}
|
||||||
|
|
||||||
setDemodBuf(DemodBuffer, 32, 0);
|
setDemodBuf(DemodBuffer, 32, 0);
|
||||||
setClockGrid(0,0);
|
//setClockGrid(0,0);
|
||||||
|
|
||||||
*word = bytebits_to_byteLSBF(DemodBuffer, 32);
|
*word = bytebits_to_byteLSBF(DemodBuffer, 32);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue