fixes to "hf cipurse info"

This commit is contained in:
iceman1001 2022-02-24 17:20:27 +01:00
commit 4bd6e8f61c

View file

@ -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) {