mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Add lf search
Chipset detection for Hitag µ / 8265
This commit is contained in:
parent
4bde83b89d
commit
04133e6d07
1 changed files with 9 additions and 0 deletions
|
@ -41,6 +41,7 @@
|
|||
#include "cmdlfhid.h" // for hid menu
|
||||
#include "cmdlfhitag.h" // for hitag menu
|
||||
#include "cmdlfhitaghts.h" // for hitag S sub commands
|
||||
#include "cmdlfhitagu.h" // for hitag µ sub commands
|
||||
#include "cmdlfidteck.h" // for idteck menu
|
||||
#include "cmdlfio.h" // for ioprox menu
|
||||
#include "cmdlfcotag.h" // for COTAG menu
|
||||
|
@ -1602,6 +1603,14 @@ static bool check_chiptype(bool getDeviceData) {
|
|||
retval = true;
|
||||
goto out;
|
||||
}
|
||||
|
||||
// Hitag µ
|
||||
if (read_htu_uid() == PM3_SUCCESS) {
|
||||
PrintAndLogEx(SUCCESS, "Chipset detection: " _GREEN_("Hitag µ / 8265"));
|
||||
PrintAndLogEx(HINT, "Hint: try " _YELLOW_("`lf hitag htu`") " commands");
|
||||
retval = true;
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue