mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
chg: more debug statements to find sending errors
This commit is contained in:
parent
3f84d47369
commit
e772774ba1
2 changed files with 10 additions and 5 deletions
|
@ -71,7 +71,7 @@ byte_t* prx = rx;
|
||||||
// printf("██████╔╝██╔████╔██║ ████╔╝\n");
|
// printf("██████╔╝██╔████╔██║ ████╔╝\n");
|
||||||
// printf("██╔═══╝ ██║╚██╔╝██║ ══█║ iceman@icesql.net\n");
|
// printf("██╔═══╝ ██║╚██╔╝██║ ══█║ iceman@icesql.net\n");
|
||||||
// printf("██║ ██║ ╚═╝ ██║ ████╔╝ https://github.com/iceman1001/proxmark3\n");
|
// printf("██║ ██║ ╚═╝ ██║ ████╔╝ https://github.com/iceman1001/proxmark3\n");
|
||||||
// printf("╚═╝ ╚═╝ ╚═╝ ╚═══╝v1.6.4\n");
|
// printf("╚═╝ ╚═╝ ╚═╝ ╚═══╝v1.6.8\n");
|
||||||
// }
|
// }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -319,11 +319,13 @@ bool uart_send(const serial_port sp, const byte_t* pbtTx, const size_t szTxLen)
|
||||||
|
|
||||||
// Write error
|
// Write error
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
|
printf("write error\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write time-out
|
// Write time-out
|
||||||
if (res == 0) {
|
if (res == 0) {
|
||||||
|
printf("write time-out\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -331,7 +333,10 @@ bool uart_send(const serial_port sp, const byte_t* pbtTx, const size_t szTxLen)
|
||||||
res = write(((serial_port_unix*)sp)->fd,pbtTx+szPos,szTxLen-szPos);
|
res = write(((serial_port_unix*)sp)->fd,pbtTx+szPos,szTxLen-szPos);
|
||||||
|
|
||||||
// Stop if the OS has some troubles sending the data
|
// Stop if the OS has some troubles sending the data
|
||||||
if (res <= 0) return false;
|
if (res <= 0) {
|
||||||
|
printf("os troubles\n");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
szPos += res;
|
szPos += res;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue