Skip to content

Commit

Permalink
Quick fix on standalone modes using SimulateIso14443aTag. Still need …
Browse files Browse the repository at this point in the history
…to fix those with SimulateIso14443aInit
  • Loading branch information
doegox committed Oct 7, 2024
1 parent 90c8fa0 commit 05ec053
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion armsrc/Standalone/hf_aveful.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ void RunMod(void) {
uint16_t flags = FLAG_7B_UID_IN_DATA;

Dbprintf("Starting simulation, press " _GREEN_("pm3 button") " to stop and go back to search state.");
SimulateIso14443aTag(7, flags, card.uid, 0);
SimulateIso14443aTag(7, flags, card.uid, 0, NULL);

// Go back to search state if user presses pm3-button
state = STATE_SEARCH;
Expand Down
12 changes: 6 additions & 6 deletions armsrc/Standalone/hf_craftbyte.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,22 +94,22 @@ void RunMod(void) {
Dbprintf("Starting simulation, press " _GREEN_("pm3 button") " to stop and go back to search state.");
if (card.sak == 0x08 && card.atqa[0] == 0x04 && card.atqa[1] == 0) {
DbpString("Mifare Classic 1k");
SimulateIso14443aTag(1, flags, card.uid, 0);
SimulateIso14443aTag(1, flags, card.uid, 0, NULL);
} else if (card.sak == 0x08 && card.atqa[0] == 0x44 && card.atqa[1] == 0) {
DbpString("Mifare Classic 4k ");
SimulateIso14443aTag(8, flags, card.uid, 0);
SimulateIso14443aTag(8, flags, card.uid, 0, NULL);
} else if (card.sak == 0x00 && card.atqa[0] == 0x44 && card.atqa[1] == 0) {
DbpString("Mifare Ultralight");
SimulateIso14443aTag(2, flags, card.uid, 0);
SimulateIso14443aTag(2, flags, card.uid, 0, NULL);
} else if (card.sak == 0x20 && card.atqa[0] == 0x04 && card.atqa[1] == 0x03) {
DbpString("Mifare DESFire");
SimulateIso14443aTag(3, flags, card.uid, 0);
SimulateIso14443aTag(3, flags, card.uid, 0, NULL);
} else if (card.sak == 0x20 && card.atqa[0] == 0x44 && card.atqa[1] == 0x03) {
DbpString("Mifare DESFire Ev1/Plus/JCOP");
SimulateIso14443aTag(3, flags, card.uid, 0);
SimulateIso14443aTag(3, flags, card.uid, 0, NULL);
} else {
Dbprintf("Unrecognized tag type -- defaulting to Mifare Classic emulation");
SimulateIso14443aTag(1, flags, card.uid, 0);
SimulateIso14443aTag(1, flags, card.uid, 0, NULL);
}

// Go back to search state if user presses pm3-button
Expand Down

0 comments on commit 05ec053

Please sign in to comment.