In VB.net I can response DSR pin change event by pinChange event, the code below:
Is felUsbSerial have the same API to do that? thanks!
serial pinchanged event:
Private Sub Port_PinChanged(sender As Object, e As SerialPinChangedEventArgs) Handles Port.PinChanged
If e.EventType = SerialPinChange.DsrChanged Then
If Port.DsrHolding Then
MsgBox("DsrHolding")
End If
End If
End Sub
Is felUsbSerial have the same API to do that? thanks!