fix #1771 - no default block size in call

This commit is contained in:
iceman1001 2022-09-03 11:14:33 +02:00
commit 1525a0059a

View file

@ -75,7 +75,8 @@ void RunMod(void) {
} else if (state == STATE_EMUL) { } else if (state == STATE_EMUL) {
Iso15693InitTag(); Iso15693InitTag();
Dbprintf("Starting simulation, press pm3-button to stop and go back to search state."); Dbprintf("Starting simulation, press pm3-button to stop and go back to search state.");
SimTagIso15693(card.uid); // default block size is 4
SimTagIso15693(card.uid, 4);
state = STATE_READ; state = STATE_READ;
} }