mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
CHG: print_hex_break now prints rownumber instead of byte position
This commit is contained in:
parent
489c39c9a5
commit
a1689f417f
1 changed files with 8 additions and 4 deletions
|
@ -104,14 +104,18 @@ void print_hex(const uint8_t * data, const size_t len) {
|
|||
printf("\n");
|
||||
}
|
||||
void print_hex_break(const uint8_t *data, const size_t len, uint8_t breaks) {
|
||||
size_t i;
|
||||
for ( i = 0; i < len; ++i) {
|
||||
|
||||
int rownum = 0;
|
||||
printf("[%02d] | ", rownum);
|
||||
for (int i = 0; i < len; ++i) {
|
||||
|
||||
printf("%02X ", data[i]);
|
||||
|
||||
// check if a line break is needed
|
||||
if ( breaks > 0 && !(i+1 % breaks) )
|
||||
printf("(%d %d)\n", i+1 , breaks);
|
||||
if ( breaks > 0 && !((i+1) % breaks) && (i+1 < len) ) {
|
||||
++rownum;
|
||||
printf("\n[%02d] | ", rownum);
|
||||
}
|
||||
}
|
||||
printf("\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue