// printf("██████╔╝██╔████╔██║ ████╔╝\n");
// printf("██╔═══╝ ██║╚██╔╝██║ ══█║ iceman@icesql.net\n");
// printf("██║ ██║ ╚═╝ ██║ ████╔╝ https://github.com/iceman1001/proxmark3\n");
- // printf("╚═╝ ╚═╝ ╚═╝ ╚═══╝v1.6.4\n");
+ // printf("╚═╝ ╚═╝ ╚═╝ ╚═══╝v1.6.8\n");
// }
// Write error
if (res < 0) {
- return false;
+ printf("write error\n");
+ return false;
}
// Write time-out
if (res == 0) {
- return false;
+ printf("write time-out\n");
+ return false;
}
// Send away the bytes
res = write(((serial_port_unix*)sp)->fd,pbtTx+szPos,szTxLen-szPos);
// 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;
}
bool uart_send(const serial_port sp, const byte_t* pbtTx, const size_t szTxLen) {
DWORD dwTxLen = 0;
- return WriteFile(((serial_port_windows*)sp)->hPort,pbtTx,szTxLen,&dwTxLen,NULL);
+ return WriteFile(((serial_port_windows*)sp)->hPort, pbtTx, szTxLen, &dwTxLen, NULL);
return (dwTxLen != 0);
}