#include <stdio.h>
#include <inttypes.h>
#include <string.h>
-#include "proxmark3.h"
+#include "comms.h"
#include "ui.h" // for PrintAndLog
#include "util.h"
#include "cmdparser.h"
// extended data
PrintAndLog(" <Q5> : Specify write to Q5 (t5555 instead of t55x7)");
PrintAndLog("");
- PrintAndLog("Sample: lf animal clone 999 112233");
+ PrintAndLog("Sample: lf fdx clone 999 112233");
return 0;
}
//Differential Biphase / di-phase (inverted biphase)
//get binary from ask wave
- if (!ASKbiphaseDemod("0 32 1 0", false)) {
+ if (!ASKbiphaseDemod("0 32 1 100", false)) {
if (g_debugMode) PrintAndLog("DEBUG: Error - FDX-B ASKbiphaseDemod failed");
return 0;
}
}
int CmdFdxRead(const char *Cmd) {
- lf_read(true, 10000);
+ lf_read(true, 39999);
return CmdFdxDemod(Cmd);
}