make NFC read protocol error recoverable

This commit is contained in:
2026-08-24 20:55:03 +02:00
parent 25ddf8ca25
commit 680964b631
2 changed files with 124 additions and 10 deletions
+2 -2
View File
@@ -166,8 +166,8 @@ async fn nfc_driver_task(
card_data.len()
);
}
Err(_) => {
log::info!("No NFC card found");
Err(e) => {
log::error!("NFC read failed: {e}");
}
}
}