mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-10 15:04:19 +00:00
nfc: fix exit after emulation (#1385)
This commit is contained in:
parent
222394d3ea
commit
f707aa92bb
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue