mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
chg: legic standalone - now saves read cards to flashmemory (RDV4)\n also simulates correct cardtype.\n It goes direct into recording / reading a tag. Once a complete dump is done, it starts to simulate
This commit is contained in:
parent
7af2457158
commit
c8b51ccf25
4 changed files with 176 additions and 35 deletions
|
@ -460,12 +460,12 @@ void LegicRfSimulate(uint8_t cardtype) {
|
|||
|
||||
// verify command line input
|
||||
if (init_card(cardtype, &card) != 0) {
|
||||
DbpString("Unknown tagtype.");
|
||||
DbpString("[!] Unknown tagtype.");
|
||||
goto OUT;
|
||||
}
|
||||
|
||||
LED_A_ON();
|
||||
DbpString("Starting Legic emulator, press button to end");
|
||||
DbpString("[=] Starting Legic emulator, press " _YELLOW_("button") "to end");
|
||||
while (!BUTTON_PRESS() && !data_available()) {
|
||||
WDT_HIT();
|
||||
|
||||
|
@ -486,7 +486,7 @@ void LegicRfSimulate(uint8_t cardtype) {
|
|||
}
|
||||
|
||||
OUT:
|
||||
DbpString("Stopped");
|
||||
DbpString("[=] Sim stopped");
|
||||
switch_off();
|
||||
StopTicks();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue