mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
typos
This commit is contained in:
parent
3577193303
commit
4c696885e4
2 changed files with 7 additions and 7 deletions
|
@ -530,7 +530,7 @@ static int Cmdmandecoderaw(const char *Cmd) {
|
||||||
CLIParserInit(&ctx, "data manrawdecode",
|
CLIParserInit(&ctx, "data manrawdecode",
|
||||||
"Manchester decode binary stream in DemodBuffer\n"
|
"Manchester decode binary stream in DemodBuffer\n"
|
||||||
"Converts 10 and 01 and converts to 0 and 1 respectively\n"
|
"Converts 10 and 01 and converts to 0 and 1 respectively\n"
|
||||||
" - must have binary sequence in demodbuffer (run `data rawdemod ar` before)",
|
" - must have binary sequence in demodbuffer (run `data rawdemod --ar` before)",
|
||||||
"data manrawdecode"
|
"data manrawdecode"
|
||||||
);
|
);
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
|
@ -545,7 +545,7 @@ static int Cmdmandecoderaw(const char *Cmd) {
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
if (DemodBufferLen == 0) {
|
if (DemodBufferLen == 0) {
|
||||||
PrintAndLogEx(WARNING, "DemodBuffer empty, run " _YELLOW_("`data rawdemod ar`"));
|
PrintAndLogEx(WARNING, "DemodBuffer empty, run " _YELLOW_("`data rawdemod --ar`"));
|
||||||
return PM3_ESOFT;
|
return PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -612,7 +612,7 @@ static int CmdBiphaseDecodeRaw(const char *Cmd) {
|
||||||
CLIParserInit(&ctx, "data biphaserawdecode",
|
CLIParserInit(&ctx, "data biphaserawdecode",
|
||||||
"Biphase decode binary stream in DemodBuffer\n"
|
"Biphase decode binary stream in DemodBuffer\n"
|
||||||
"Converts 10 or 01 -> 1 and 11 or 00 -> 0\n"
|
"Converts 10 or 01 -> 1 and 11 or 00 -> 0\n"
|
||||||
" - must have binary sequence in demodbuffer (run `data rawdemod ar` before)\n"
|
" - must have binary sequence in demodbuffer (run `data rawdemod --ar` before)\n"
|
||||||
" - invert for Conditional Dephase Encoding (CDP) AKA Differential Manchester",
|
" - invert for Conditional Dephase Encoding (CDP) AKA Differential Manchester",
|
||||||
"data biphaserawdecode --> decode biphase bitstream from the demodbuffer\n"
|
"data biphaserawdecode --> decode biphase bitstream from the demodbuffer\n"
|
||||||
"data biphaserawdecode -oi --> decode biphase bitstream from the demodbuffer, adjust offset, and invert output"
|
"data biphaserawdecode -oi --> decode biphase bitstream from the demodbuffer, adjust offset, and invert output"
|
||||||
|
@ -631,7 +631,7 @@ static int CmdBiphaseDecodeRaw(const char *Cmd) {
|
||||||
CLIParserFree(ctx);
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
if (DemodBufferLen == 0) {
|
if (DemodBufferLen == 0) {
|
||||||
PrintAndLogEx(WARNING, "DemodBuffer empty, run " _YELLOW_("`data rawdemod ar`"));
|
PrintAndLogEx(WARNING, "DemodBuffer empty, run " _YELLOW_("`data rawdemod --ar`"));
|
||||||
return PM3_ESOFT;
|
return PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1472,15 +1472,15 @@ int CmdLFfind(const char *Cmd) {
|
||||||
bool st = true;
|
bool st = true;
|
||||||
if (ASKDemod_ext(0, 0, 0, 0, false, true, false, 1, &st) == PM3_SUCCESS) {
|
if (ASKDemod_ext(0, 0, 0, 0, false, true, false, 1, &st) == PM3_SUCCESS) {
|
||||||
PrintAndLogEx(INFO, "Unknown ASK Modulated and Manchester encoded Tag found!");
|
PrintAndLogEx(INFO, "Unknown ASK Modulated and Manchester encoded Tag found!");
|
||||||
PrintAndLogEx(INFO, "if it does not look right it could instead be ASK/Biphase - try " _YELLOW_("'data rawdemod ab'"));
|
PrintAndLogEx(INFO, "if it does not look right it could instead be ASK/Biphase - try " _YELLOW_("'data rawdemod --ab'"));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CmdPSK1rawDemod("") == PM3_SUCCESS) {
|
if (CmdPSK1rawDemod("") == PM3_SUCCESS) {
|
||||||
PrintAndLogEx(INFO, "Possible unknown PSK1 Modulated Tag found above!");
|
PrintAndLogEx(INFO, "Possible unknown PSK1 Modulated Tag found above!");
|
||||||
PrintAndLogEx(INFO, " Could also be PSK2 - try " _YELLOW_("'data rawdemod p2'"));
|
PrintAndLogEx(INFO, " Could also be PSK2 - try " _YELLOW_("'data rawdemod --p2'"));
|
||||||
PrintAndLogEx(INFO, " Could also be PSK3 - [currently not supported]");
|
PrintAndLogEx(INFO, " Could also be PSK3 - [currently not supported]");
|
||||||
PrintAndLogEx(INFO, " Could also be NRZ - try " _YELLOW_("'data rawdemod nr"));
|
PrintAndLogEx(INFO, " Could also be NRZ - try " _YELLOW_("'data rawdemod --nr"));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue