Alex F
Alex F

Reputation: 43331

Flow control and DCB structure

Windows HyperTerminal COM port settings dialog contains Flow Control combo with the following values: Xon/Xoff, Hardware, None.

How these values are related to DCB structure? I don't see any member in this structure that I can fill with these values.

Upvotes: 1

Views: 1930

Answers (1)

Windows programmer
Windows programmer

Reputation: 8065

Xon/Xoff: fTXContinueOnXoff, fOutX, fInX, XonLim, XoffLim, XonChar, XoffChar

Hardware: fOutxCtsFlow, fOutxDsrFlow, fDtrControl, fDsrSensitivity, fRtsControl

Upvotes: 2

Related Questions