1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-13 13:29:50 +04:00

MFC emulation fixes (#3324)

* mf classic listener: fix write block
* nfc: go to idle state instead of sleep
* lib nfc: fix documentation
This commit is contained in:
gornekich
2023-12-29 07:24:20 +04:00
committed by GitHub
parent 895694c624
commit a7b60bf2a6
9 changed files with 21 additions and 14 deletions

View File

@@ -150,7 +150,7 @@ static int32_t nfc_worker_listener(void* context) {
} else if(command == NfcCommandReset) {
furi_hal_nfc_listener_enable_rx();
} else if(command == NfcCommandSleep) {
furi_hal_nfc_listener_sleep();
furi_hal_nfc_listener_idle();
}
}
}