Skip to content

Commit e81beeb

Browse files
committed
Use SerialTimeout settings that are compatible with MBM.
1 parent f49477b commit e81beeb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MinComm/main.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -752,9 +752,9 @@ void RunSerialConsole (PCWSTR DevicePath, _In_ DCB* DcbPtr, SerialParamMask Para
752752

753753
auto commTimeouts = COMMTIMEOUTS();
754754
{
755-
commTimeouts.ReadIntervalTimeout = MAXDWORD;
756-
commTimeouts.ReadTotalTimeoutConstant = MAXDWORD - 1;
757-
commTimeouts.ReadTotalTimeoutMultiplier = MAXDWORD;
755+
commTimeouts.ReadIntervalTimeout = 10;
756+
commTimeouts.ReadTotalTimeoutConstant = 0;
757+
commTimeouts.ReadTotalTimeoutMultiplier = 0;
758758
commTimeouts.WriteTotalTimeoutConstant = 0;
759759
commTimeouts.WriteTotalTimeoutMultiplier = 0;
760760
}

0 commit comments

Comments
 (0)