mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-12 11:58:36 -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:
@@ -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