projects
/
proxmark3-svn
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
FIX: wrong variable name.
[proxmark3-svn]
/
client
/
uart.c
diff --git
a/client/uart.c
b/client/uart.c
index 5870ebaeeade8b3503d6735620d2e85ef6b26e4d..119bf130e3e06258bb04d5498177e3714891b98f 100644
(file)
--- a/
client/uart.c
+++ b/
client/uart.c
@@
-106,6
+106,11
@@
serial_port uart_open(const char* pcPortName)
// Flush all lingering data that may exist
tcflush(sp->fd, TCIOFLUSH);
// Flush all lingering data that may exist
tcflush(sp->fd, TCIOFLUSH);
+ // set speed, works for UBUNTU 14.04
+ bool err = uart_set_speed(sp, 460800);
+ if (!err)
+ uart_set_speed(sp, 115200);
+
return sp;
}
return sp;
}
@@
-319,19
+324,24
@@
bool uart_send(const serial_port sp, const byte_t* pbtTx, const size_t szTxLen)
// Write error
if (res < 0) {
// Write error
if (res < 0) {
- return false;
+ printf("write error\n");
+ return false;
}
// Write time-out
if (res == 0) {
}
// 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
}
// 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;
}
szPos += res;
}
@@
-384,11
+394,11
@@
serial_port uart_open(const char* pcPortName) {
uart_close(sp);
return INVALID_SERIAL_PORT;
}
uart_close(sp);
return INVALID_SERIAL_PORT;
}
-
- sp->ct.ReadIntervalTimeout = 1;
- sp->ct.ReadTotalTimeoutMultiplier = 1;
+ // all zero's configure: no timeout for read/write used.
+ sp->ct.ReadIntervalTimeout =
0;//
1;
+ sp->ct.ReadTotalTimeoutMultiplier =
0;//
1;
sp->ct.ReadTotalTimeoutConstant = 30;
sp->ct.ReadTotalTimeoutConstant = 30;
- sp->ct.WriteTotalTimeoutMultiplier = 1;
+ sp->ct.WriteTotalTimeoutMultiplier =
0;//
1;
sp->ct.WriteTotalTimeoutConstant = 30;
if(!SetCommTimeouts(sp->hPort,&sp->ct)) {
sp->ct.WriteTotalTimeoutConstant = 30;
if(!SetCommTimeouts(sp->hPort,&sp->ct)) {
@@
-398,6
+408,10
@@
serial_port uart_open(const char* pcPortName) {
PurgeComm(sp->hPort, PURGE_RXABORT | PURGE_RXCLEAR);
PurgeComm(sp->hPort, PURGE_RXABORT | PURGE_RXCLEAR);
+ bool err = uart_set_speed(sp, 460800);
+ if (!err)
+ uart_set_speed(sp, 115200);
+
return sp;
}
return sp;
}
@@
-428,7
+442,7
@@
bool uart_receive(const serial_port sp, byte_t* pbtRx, size_t* pszRxLen) {
bool uart_send(const serial_port sp, const byte_t* pbtTx, const size_t szTxLen) {
DWORD dwTxLen = 0;
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);
}
return (dwTxLen != 0);
}
Impressum
,
Datenschutz