mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-24 03:29:57 -07:00
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:
@@ -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):
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user