chg: reuse code

This commit is contained in:
iceman1001 2019-08-26 10:52:07 +02:00
parent ccb85067d5
commit 2e4c7f4f8d

View file

@ -160,19 +160,7 @@ void printarr(const char *name, uint8_t *arr, int len) {
}
void printvar(const char *name, uint8_t *arr, int len) {
/*
int cx, i;
size_t outsize = 40 + strlen(name) + len * 2;
char *output = calloc(outsize, sizeof(char));
cx = snprintf(output, outsize, "%s = ", name);
for (i = 0; i < len; i++) {
cx += snprintf(output + cx, outsize - cx, "%02x", *(arr + i)); //2 bytes per byte
}
PrintAndLogEx(NORMAL, output);
free(output);
*/
PrintAndLogEx(NORMAL, "%s = " _YELLOW_("%s"), name, sprint_hex(arr, len) );
}
void printarr_human_readable(const char *title, uint8_t *arr, int len) {