MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / FT_SetDataCharacteristics

Method FT_SetDataCharacteristics

external/floppybridge/src/ftdi.cpp:312–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310};
311
312FTDI::FT_STATUS FTDIInterface::FT_SetDataCharacteristics(FT_BITS WordLength, FT_STOP_BITS StopBits, FT_PARITY Parity) {
313 if ((::FT_SetDataCharacteristics) && (m_handle)) return ::FT_SetDataCharacteristics(m_handle, (UCHAR)WordLength, (UCHAR)StopBits, (UCHAR)Parity);
314 return FTDI::FT_STATUS::FT_DRIVER_NOT_AVAILABLE;
315};
316
317FTDI::FT_STATUS FTDIInterface::FT_SetFlowControl(USHORT FlowControl, UCHAR XonChar, UCHAR XoffChar) {
318 if ((::FT_SetFlowControl) && (m_handle)) return ::FT_SetFlowControl(m_handle, FlowControl, XonChar, XoffChar);

Callers 1

configurePortMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected