| 315 | }; |
| 316 | |
| 317 | FTDI::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); |
| 319 | return FTDI::FT_STATUS::FT_DRIVER_NOT_AVAILABLE; |
| 320 | }; |
| 321 | |
| 322 | FTDI::FT_STATUS FTDIInterface::FT_ResetDevice() { |
| 323 | if ((::FT_ResetDevice) && (m_handle)) return ::FT_ResetDevice(m_handle); |