patch: serial op failed on windows (in boost::asio)

see: https://github.com/chriskohlhoff/asio/issues/717
Dieser Commit ist enthalten in:
Reinder Feenstra 2021-09-29 17:28:24 +02:00
Ursprung b15cc45286
Commit 0276e92eb7

Datei anzeigen

@ -84,7 +84,7 @@ boost::system::error_code win_iocp_serial_port_service::open(
dcb.fBinary = TRUE; // Win32 only supports binary mode.
dcb.fNull = FALSE; // Do not ignore NULL characters.
dcb.fAbortOnError = FALSE; // Ignore serial framing errors.
dcb.BaudRate = 0; // 0 baud by default
dcb.BaudRate = CBR_9600; // 9600 baud by default
dcb.ByteSize = 8; // 8 bit bytes
dcb.fOutxCtsFlow = FALSE; // No flow control
dcb.fOutxDsrFlow = FALSE;