the 14a sim had a wrong size check of the irats pointer instead of actual size. Only way around it was to add the length at function call

This commit is contained in:
iceman1001 2024-11-15 13:27:39 +01:00
commit d398576fc7
7 changed files with 57 additions and 28 deletions

View file

@ -252,7 +252,7 @@ void RunMod(void) {
FLAG_SET_UID_IN_DATA(flags, 7);
Dbprintf("Starting simulation, press " _GREEN_("pm3 button") " to stop and go back to search state.");
SimulateIso14443aTag(7, flags, card.uid, 0, NULL);
SimulateIso14443aTag(7, flags, card.uid, 0, NULL, 0);
// Go back to search state if user presses pm3-button
state = STATE_SEARCH;