Your browser does not allow scripts
Please click here to view a static table of contents without scripts
FT_ClrRts
Return to Introduction  Previous page  Next page
This function clears the Request To Send (RTS) control signal.

FT_STATUS
FT_ClrRts
(FT_HANDLE ftHandle)




Parameters
ftHandle
Handle of the device.




Return Value
FT_OK if successful, otherwise the return value is an FT error code.



Example
This sample shows how to clear RTS.

FT_HANDLE ftHandle; 
FT_STATUS ftStatus;

ftStatus = FT_Open(0, &ftHandle);
if(ftStatus != FT_OK) {
   // FT_Open failed
   return;
}

ftStatus = FT_ClrRts(ftHandle);
if (ftStatus == FT_OK) {
    // FT_ClrRts OK
}
else {
    // FT_ClrRts failed
}

FT_Close(ftHandle);