Add ATS of NTAG Gen2

This commit is contained in:
Philippe Teuwen 2020-09-09 02:01:36 +02:00
parent 9f33e52ae0
commit 9778b272a8

View file

@ -2303,6 +2303,11 @@ void MifareCIdent(void) {
isGen = MAGIC_GEN_2;
goto OUT;
}
// test for NTAG213 magic gen2
if (memcmp(buf, "\x85\x00\x00\xA0\x00\x00\x0A\xA5\x00\x04\x04\x02\x01\x00\x0F\x03\x79\x0C", 18) == 0) {
isGen = MAGIC_GEN_2;
goto OUT;
}
};
OUT: