mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +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
|
||||
#ifdef WITH_FPC
|
||||
// Still relevant?
|
||||
sp->ct.ReadIntervalTimeout = 1000;
|
||||
sp->ct.ReadIntervalTimeout = 150; //200;
|
||||
sp->ct.ReadTotalTimeoutMultiplier = 0;
|
||||
sp->ct.ReadTotalTimeoutConstant = 1500;
|
||||
sp->ct.WriteTotalTimeoutMultiplier = 1000;
|
||||
sp->ct.ReadTotalTimeoutConstant = 150; //200;
|
||||
sp->ct.WriteTotalTimeoutMultiplier = 150; //200;
|
||||
sp->ct.WriteTotalTimeoutConstant = 0;
|
||||
#else
|
||||
sp->ct.ReadIntervalTimeout = 30;
|
||||
|
|
Loading…
Reference in a new issue