Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgornekich <n.gorbadey@gmail.com>2021-08-03 20:24:20 +0300
committerGitHub <noreply@github.com>2021-08-03 20:24:20 +0300
commit841804026e5cfe2692d199ffff31763347c8dc58 (patch)
treedfe34b6c4fe9064d222dd2bb14aaabd5ae7b2c30 /applications/nfc/nfc_worker.c
parent15592682ad7cc0dd4559f8544798075b2a1e7a1e (diff)
[FL-1619] NFC long APDU emulation (#623)
* nfc: add apdu sequence exchange debug scene * api-hal-gpio: fix GPIO initialization * nfc: pull down nfc chip IRQ pin Co-authored-by: あく <alleteam@gmail.com>
Diffstat (limited to 'applications/nfc/nfc_worker.c')
-rwxr-xr-xapplications/nfc/nfc_worker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/nfc/nfc_worker.c b/applications/nfc/nfc_worker.c
index e536620e..c5c9ed76 100755
--- a/applications/nfc/nfc_worker.c
+++ b/applications/nfc/nfc_worker.c
@@ -364,7 +364,7 @@ void nfc_worker_emulate_emv(NfcWorker* nfc_worker) {
};
while(nfc_worker->state == NfcWorkerStateEmulateEMV) {
- if(api_hal_nfc_listen(params.uid, params.uid_len, params.atqa, params.sak, 100)) {
+ if(api_hal_nfc_listen(params.uid, params.uid_len, params.atqa, params.sak, 300)) {
FURI_LOG_I(NFC_WORKER_TAG, "POS terminal detected");
// Read data from POS terminal
err = api_hal_nfc_data_exchange(NULL, 0, &rx_buff, &rx_len, false);