1
mirror of https://github.com/DarkFlippers/unleashed-firmware.git synced 2025-12-12 12:42:30 +04:00

Remove delay from emulation loop. This improves compatibility when the reader is Android.

This commit is contained in:
Tiernan Messmer
2023-06-03 22:31:24 +10:00
committed by MX
parent 263c94d167
commit 2008247e65

View File

@@ -179,7 +179,6 @@ void nfc_worker_nfcv_emulate(NfcWorker* nfc_worker) {
} }
} }
} }
furi_delay_ms(10);
} }
nfcv_emu_deinit(nfcv_data); nfcv_emu_deinit(nfcv_data);
@@ -207,7 +206,6 @@ void nfc_worker_nfcv_sniff(NfcWorker* nfc_worker) {
nfc_worker->callback(NfcWorkerEventNfcVCommandExecuted, nfc_worker->context); nfc_worker->callback(NfcWorkerEventNfcVCommandExecuted, nfc_worker->context);
} }
} }
furi_delay_ms(10);
} }
nfcv_emu_deinit(nfcv_data); nfcv_emu_deinit(nfcv_data);