Fixed MFC 1k/4k issue and Ultralight detection

This commit is contained in:
michael
2026-01-26 14:06:49 -08:00
parent b27baf5dec
commit 2409ec3625
10 changed files with 237 additions and 57 deletions

View File

@@ -207,7 +207,8 @@ export async function transceiveNfcA(command: number[]): Promise<number[]> {
const response = await NfcManager.nfcAHandler.transceive(command);
return Array.from(response);
} catch (error) {
console.error('[commands] NfcA transceive failed:', error);
// Use debug level - some failures are expected (e.g., GET_VERSION on original Ultralight)
console.debug('[commands] NfcA transceive failed:', error);
throw error;
}
}