mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fix: LED is used as a flag, 1,2,4,8 not 1,2,3,4..
This commit is contained in:
parent
22ead8ca0b
commit
3587aeff2a
4 changed files with 30 additions and 27 deletions
|
@ -518,7 +518,7 @@ failtag:
|
|||
if (cjcuid == 0) {
|
||||
cjSetCursLeft();
|
||||
DbprintfEx(FLAG_NEWLINE, "%s>>%s BUG: 0000_CJCUID! Retrying...", _XRED_, _XWHITE_);
|
||||
SpinErr(0, 100, 8);
|
||||
SpinErr(LED_A, 100, 8);
|
||||
goto failtag;
|
||||
}
|
||||
|
||||
|
@ -636,7 +636,7 @@ failtag:
|
|||
cjTabulize();
|
||||
DbprintfEx(FLAG_NEWLINE, "%s[ FAIL ]%s\r\n->did not found all the keys :'(", _XRED_, _XWHITE_);
|
||||
cjSetCursLeft();
|
||||
SpinErr(1, 100, 8);
|
||||
SpinErr(LEB_B, 100, 8);
|
||||
SpinOff(100);
|
||||
return;
|
||||
}
|
||||
|
@ -672,7 +672,7 @@ failtag:
|
|||
cjSetCursLeft();
|
||||
|
||||
DbprintfEx(FLAG_NEWLINE, "FATAL:EML_FALLBACKFILL_B");
|
||||
SpinErr(2, 100, 8);
|
||||
SpinErr(LED_C, 100, 8);
|
||||
SpinOff(100);
|
||||
return;
|
||||
}
|
||||
|
@ -778,7 +778,7 @@ readysim:
|
|||
DbprintfEx(FLAG_NEWLINE, "- [ LA FIN ] -\r\n%s`-> You can take shell back :) ...", _XWHITE_);
|
||||
cjSetCursLeft();
|
||||
vtsend_set_attribute(NULL, 0);
|
||||
SpinErr(3, 100, 16);
|
||||
SpinErr(LED_D, 100, 16);
|
||||
SpinDown(75);
|
||||
SpinOff(100);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue