mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-05-12 11:18:11 -07:00
lf em 410x - now uses cliparser, support continuous mode, and reworked output
This commit is contained in:
@@ -709,7 +709,7 @@ static int Cmdmandecoderaw(const char *Cmd) {
|
||||
if (Em410xDecode(bits, &size, &idx, &hi, &id) == 1) {
|
||||
//need to adjust to set bitstream back to manchester encoded data
|
||||
//setDemodBuff(bits, size, idx);
|
||||
printEM410x(hi, id);
|
||||
printEM410x(hi, id, false);
|
||||
}
|
||||
}
|
||||
return PM3_SUCCESS;
|
||||
|
||||
+299
-271
File diff suppressed because it is too large
Load Diff
@@ -16,7 +16,7 @@
|
||||
int CmdLFEM410X(const char *Cmd);
|
||||
|
||||
int demodEM410x(bool verbose);
|
||||
void printEM410x(uint32_t hi, uint64_t id);
|
||||
void printEM410x(uint32_t hi, uint64_t id, bool verbose);
|
||||
|
||||
int AskEm410xDecode(bool verbose, uint32_t *hi, uint64_t *lo);
|
||||
int AskEm410xDemod(int clk, int invert, int maxErr, size_t maxLen, bool amplify, uint32_t *hi, uint64_t *lo, bool verbose);
|
||||
|
||||
Reference in New Issue
Block a user