Add support for NTAG I2C Plus 1k and 2k chips (#237)

* Add support for NTAG I2C Plus 1k and 2k chips so my Dangerous Things xSIID implant scans and displays NDEF properly.

* Update changelog

* Format

---------

Co-authored-by: Willy-JL <49810075+Willy-JL@users.noreply.github.com>
This commit is contained in:
RocketGod
2024-09-26 18:35:35 -07:00
committed by GitHub
parent 993562f6f9
commit a8ea95ed2c
2 changed files with 4 additions and 1 deletions

View File

@@ -40,6 +40,7 @@
- CLI: Print plugin name on load fail (by @Willy-JL)
- NFC:
- Added 6 new Mifare Classic keys from Bulgaria Hotel (#216 by @z3r0l1nk)
- NDEF parser supports NTAG I2C Plus 1k and 2k chips too (by @RocketGod-git)
- OFW: Rename 'Detect Reader' to 'Extract MF Keys' (by @bettse)
- Sub-GHz:
- UL: Frequency analyzer fixes and improvements (by @xMasterX):

View File

@@ -366,7 +366,9 @@ static bool ndef_parse(const NfcDevice* device, FuriString* parsed_data) {
// Check card type can contain NDEF
if(data->type != MfUltralightTypeNTAG203 && data->type != MfUltralightTypeNTAG213 &&
data->type != MfUltralightTypeNTAG215 && data->type != MfUltralightTypeNTAG216 &&
data->type != MfUltralightTypeNTAGI2C1K && data->type != MfUltralightTypeNTAGI2C2K) {
data->type != MfUltralightTypeNTAGI2C1K && data->type != MfUltralightTypeNTAGI2C2K &&
data->type != MfUltralightTypeNTAGI2CPlus1K &&
data->type != MfUltralightTypeNTAGI2CPlus2K) {
break;
}