mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
tlv decoder works.
This commit is contained in:
parent
499df9088d
commit
23207d748f
3 changed files with 3 additions and 26 deletions
|
@ -19,7 +19,7 @@ static bool print_cb(void *data, const struct tlv *tlv) {
|
|||
|
||||
void TLVPrintFromBuffer(uint8_t *data, int datalen) {
|
||||
struct tlvdb *t = NULL;
|
||||
t = tlvdb_parse(data, datalen);
|
||||
t = tlvdb_parse_multi(data, datalen);
|
||||
if (t) {
|
||||
PrintAndLog("TLV decoded:");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue