mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-11 15:56:09 -07:00
further MFU info updates (mainly icemans)
This commit is contained in:
parent
372a82570b
commit
c585a5cf0b
3 changed files with 160 additions and 85 deletions
|
@ -112,6 +112,7 @@ char * sprint_hex(const uint8_t * data, const size_t len) {
|
|||
|
||||
int maxLen = ( len > 1024/3) ? 1024/3 : len;
|
||||
static char buf[1024];
|
||||
memset(buf, 0x00, 1024);
|
||||
char * tmp = buf;
|
||||
size_t i;
|
||||
|
||||
|
@ -125,6 +126,7 @@ char *sprint_bin_break(const uint8_t *data, const size_t len, const uint8_t brea
|
|||
|
||||
int maxLen = ( len > 1024) ? 1024 : len;
|
||||
static char buf[1024];
|
||||
memset(buf, 0x00, 1024);
|
||||
char *tmp = buf;
|
||||
|
||||
for (size_t i=0; i < maxLen; ++i){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue