From 1525a0059aced44bcecc1e6ac6bea42ee823ac8c Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Sat, 3 Sep 2022 11:14:33 +0200 Subject: [PATCH] fix #1771 - no default block size in call --- armsrc/Standalone/hf_tmudford.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/armsrc/Standalone/hf_tmudford.c b/armsrc/Standalone/hf_tmudford.c index 158250a0c..a945a49ec 100644 --- a/armsrc/Standalone/hf_tmudford.c +++ b/armsrc/Standalone/hf_tmudford.c @@ -75,7 +75,8 @@ void RunMod(void) { } else if (state == STATE_EMUL) { Iso15693InitTag(); 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; }