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

nfc: fix exit after emulation (#1385)

This commit is contained in:
gornekich
2022-07-12 17:56:56 +03:00
committed by GitHub
parent 222394d3ea
commit f707aa92bb

View File

@@ -286,7 +286,8 @@ bool furi_hal_nfc_listen_rx(FuriHalNfcTxRxContext* tx_rx, uint32_t timeout_ms) {
continue;
}
if(osKernelGetTickCount() - start > timeout_ms) {
FURI_LOG_D(TAG, "Interrupt waiting timeout");
FURI_LOG_T(TAG, "Interrupt waiting timeout");
osDelay(1);
break;
}
}