mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
fix: lf viking demod - works :)
This commit is contained in:
parent
0d1438d156
commit
10fc50aff8
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ static int usage_lf_viking_sim(void) {
|
||||||
//by marshmellow
|
//by marshmellow
|
||||||
//see ASKDemod for what args are accepted
|
//see ASKDemod for what args are accepted
|
||||||
static int CmdVikingDemod(const char *Cmd) {
|
static int CmdVikingDemod(const char *Cmd) {
|
||||||
if (!ASKDemod(Cmd, false, false, 1)) {
|
if (ASKDemod(Cmd, false, false, 1) != PM3_SUCCESS) {
|
||||||
PrintAndLogEx(DEBUG, "DEBUG: Error - Viking ASKDemod failed");
|
PrintAndLogEx(DEBUG, "DEBUG: Error - Viking ASKDemod failed");
|
||||||
return PM3_ESOFT;
|
return PM3_ESOFT;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue