From 6ac7d282838fad467adc421b4b2196481badb214 Mon Sep 17 00:00:00 2001 From: tcprst Date: Tue, 15 Sep 2020 16:51:36 -0400 Subject: [PATCH] add ST25TA64K chip model --- client/src/cmdhfst.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/src/cmdhfst.c b/client/src/cmdhfst.c index 9aa44eea0..e16b513e4 100644 --- a/client/src/cmdhfst.c +++ b/client/src/cmdhfst.c @@ -79,6 +79,9 @@ static char *get_st_chip_model(uint8_t pc) { case 0xC: sprintf(s, "SRT512"); break; + case 0xC4: + sprintf(s, "ST25TA64K"); + break; case 0xE2: sprintf(s, "ST25??? IKEA Rothult"); break;