mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 11:43:14 +08:00
MINGW, uart speed up when compiling with FPC support
This commit is contained in:
parent
f4d62eec09
commit
26c953aee8
1 changed files with 3 additions and 3 deletions
|
@ -88,10 +88,10 @@ serial_port uart_open(const char *pcPortName, uint32_t speed) {
|
||||||
// took settings from libnfc/buses/uart.c
|
// took settings from libnfc/buses/uart.c
|
||||||
#ifdef WITH_FPC
|
#ifdef WITH_FPC
|
||||||
// Still relevant?
|
// Still relevant?
|
||||||
sp->ct.ReadIntervalTimeout = 1000;
|
sp->ct.ReadIntervalTimeout = 150; //200;
|
||||||
sp->ct.ReadTotalTimeoutMultiplier = 0;
|
sp->ct.ReadTotalTimeoutMultiplier = 0;
|
||||||
sp->ct.ReadTotalTimeoutConstant = 1500;
|
sp->ct.ReadTotalTimeoutConstant = 150; //200;
|
||||||
sp->ct.WriteTotalTimeoutMultiplier = 1000;
|
sp->ct.WriteTotalTimeoutMultiplier = 150; //200;
|
||||||
sp->ct.WriteTotalTimeoutConstant = 0;
|
sp->ct.WriteTotalTimeoutConstant = 0;
|
||||||
#else
|
#else
|
||||||
sp->ct.ReadIntervalTimeout = 30;
|
sp->ct.ReadIntervalTimeout = 30;
|
||||||
|
|
Loading…
Reference in a new issue