mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 19:38:52 +08:00
fix inconsistent spacing within functions
did not convert spaces to tabs but made the functions consistent with what it used so it can be auto converted. (sorry for the annoying space/tab usage in the past.) we can convert all to tabs later.
This commit is contained in:
parent
be2cf126bf
commit
b4fb11ba92
3 changed files with 199 additions and 201 deletions
|
@ -1100,8 +1100,6 @@ int CmdFSKdemodAWID(const char *Cmd)
|
||||||
PrintAndLog("DEBUG: Error - only noise found");
|
PrintAndLog("DEBUG: Error - only noise found");
|
||||||
else if (idx == -3)
|
else if (idx == -3)
|
||||||
PrintAndLog("DEBUG: Error - problem during FSK demod");
|
PrintAndLog("DEBUG: Error - problem during FSK demod");
|
||||||
// else if (idx == -3)
|
|
||||||
// PrintAndLog("Error: thought we had a tag but the parity failed");
|
|
||||||
else if (idx == -4)
|
else if (idx == -4)
|
||||||
PrintAndLog("DEBUG: Error - AWID preamble not found");
|
PrintAndLog("DEBUG: Error - AWID preamble not found");
|
||||||
else if (idx == -5)
|
else if (idx == -5)
|
||||||
|
|
|
@ -765,7 +765,7 @@ static command_t CommandTable[] =
|
||||||
{"indalademod", CmdIndalaDemod, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
|
{"indalademod", CmdIndalaDemod, 1, "['224'] -- Demodulate samples for Indala 64 bit UID (option '224' for 224 bit)"},
|
||||||
{"indalaclone", CmdIndalaClone, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
|
{"indalaclone", CmdIndalaClone, 0, "<UID> ['l']-- Clone Indala to T55x7 (tag must be in antenna)(UID in HEX)(option 'l' for 224 UID"},
|
||||||
{"read", CmdLFRead, 0, "Read 125/134 kHz LF ID-only tag. Do 'lf read h' for help"},
|
{"read", CmdLFRead, 0, "Read 125/134 kHz LF ID-only tag. Do 'lf read h' for help"},
|
||||||
{"search", CmdLFfind, 1, "Read and Search for valid known tag (in offline mode it you can load first then search)"},
|
{"search", CmdLFfind, 1, "[offline] ['u'] Read and Search for valid known tag (in offline mode it you can load first then search) - 'u' to search for unknown tags"},
|
||||||
{"sim", CmdLFSim, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
|
{"sim", CmdLFSim, 0, "[GAP] -- Simulate LF tag from buffer with optional GAP (in microseconds)"},
|
||||||
{"simbidir", CmdLFSimBidir, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
|
{"simbidir", CmdLFSimBidir, 0, "Simulate LF tag (with bidirectional data transmission between reader and tag)"},
|
||||||
{"simman", CmdLFSimManchester, 0, "<Clock> <Bitstream> [GAP] Simulate arbitrary Manchester LF tag"},
|
{"simman", CmdLFSimManchester, 0, "<Clock> <Bitstream> [GAP] Simulate arbitrary Manchester LF tag"},
|
||||||
|
|
Loading…
Add table
Reference in a new issue