add: 'hf list mf' - old 'hf mf sniff' decoding of data has now been incorporated annotations instead. (@merlokk)

---most likely broke something.. :)  needs proper testing.
This commit is contained in:
iceman1001 2018-02-14 23:03:39 +01:00
commit ad99b4f394
9 changed files with 1035 additions and 589 deletions

View file

@ -121,6 +121,7 @@ void hex_to_buffer(const uint8_t *buf, const uint8_t *hex_data, const size_t hex
char *tmp = (char *)buf;
size_t i;
memset(tmp, 0x00, hex_max_len);
int maxLen = ( hex_len > hex_max_len) ? hex_max_len : hex_len;