mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
fixes to "hf cipurse info"
This commit is contained in:
parent
c98bdfe857
commit
4bd6e8f61c
1 changed files with 6 additions and 3 deletions
|
@ -307,12 +307,15 @@ static void CIPURSEPrintPersoMode(uint8_t data) {
|
||||||
|
|
||||||
// 2021 iceman: what is the description text of profile L,S,T ?
|
// 2021 iceman: what is the description text of profile L,S,T ?
|
||||||
static void CIPURSEPrintProfileInfo(uint8_t data) {
|
static void CIPURSEPrintProfileInfo(uint8_t data) {
|
||||||
|
|
||||||
|
PrintAndLogEx(INFO, "Profile........" NOLF);
|
||||||
if ((data & 0x01) == 0x01)
|
if ((data & 0x01) == 0x01)
|
||||||
PrintAndLogEx(INFO, "Profile........ L");
|
PrintAndLogEx(NORMAL, " L" NOLF);
|
||||||
if ((data & 0x02) == 0x02)
|
if ((data & 0x02) == 0x02)
|
||||||
PrintAndLogEx(INFO, "Profile........ S");
|
PrintAndLogEx(NORMAL, ", S" NOLF);
|
||||||
if ((data & 0x04) == 0x04)
|
if ((data & 0x04) == 0x04)
|
||||||
PrintAndLogEx(INFO, "Profile........ T");
|
PrintAndLogEx(NORMAL, ", T" NOLF);
|
||||||
|
PrintAndLogEx(NORMAL, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void CIPURSEPrintManufacturerInfo(uint8_t data) {
|
static void CIPURSEPrintManufacturerInfo(uint8_t data) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue